application/json

Body Required

  • name string Required

    Maximum length is 128.

  • preview_url string Required

    Maximum length is 1024.

  • target string Required
  • custom_css string

    Maximum length is 4096.

  • active boolean

    Default value is true.

Responses

  • 201 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • logo_id integer Required
    • name string Required
    • preview_url string Required
    • target string Required
    • custom_css string | null Required
    • active boolean Required
    • authors array[object] | array Required

      Any of:
      Hide attributes Show attributes object
      • author_id integer Required
      • user_id integer Required
      • username string Required
      • created_at integer Required
    • created_at integer Required
  • 503 application/json

    Database connection error

    Hide response attribute Show response attribute object
    • detail string

      Default value is Can't connect to MySQL server on '[SERVER]'.

  • 422 application/json

    Validation Error

    Hide response attribute Show response attribute object
    • detail array[object]
      Hide detail attributes Show detail attributes object
      • loc array[string | integer] Required
      • msg string Required
      • type string Required
POST /api/logos
curl \
 -X POST https://lztup.toil.cc/api/logos \
 -H "Content-Type: application/json" \
 -d '{"name":"string","preview_url":"string","target":"string","custom_css":"string","active":true}'
Request example
{
  "name": "string",
  "preview_url": "string",
  "target": "string",
  "custom_css": "string",
  "active": true
}
Request examples
{
  "name": "string",
  "preview_url": "string",
  "target": "string",
  "custom_css": "string",
  "active": true
}
Response examples (201)
{
  "logo_id": 42,
  "name": "string",
  "preview_url": "string",
  "target": "string",
  "custom_css": "string",
  "active": true,
  "authors": [
    {
      "author_id": 42,
      "user_id": 42,
      "username": "string",
      "created_at": 42
    }
  ],
  "created_at": 42
}
Response examples (503)
{
  "detail": "Can't connect to MySQL server on '[SERVER]'"
}
Response examples (422)
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}