POST
/api/themes
curl \
-X POST https://lztup.toil.cc/api/themes \
-H "Content-Type: application/json" \
-d '{"name":"string","file_url":"string","accent_color":"rgba(58, 58, 58, 0.9)","text_color":"#d6d6d6","active":true}'
Request example
{
"name": "string",
"file_url": "string",
"accent_color": "rgba(58, 58, 58, 0.9)",
"text_color": "#d6d6d6",
"active": true
}
Request examples
{
"name": "string",
"file_url": "string",
"accent_color": "rgba(58, 58, 58, 0.9)",
"text_color": "#d6d6d6",
"active": true
}
Response examples (201)
{
"theme_id": 42,
"name": "string",
"file_url": "string",
"accent_color": "string",
"text_color": "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"
}
]
}