POST
/brand-config/rollback
curl \
--request POST 'http://api.example.com/brand-config/rollback' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"version":42}'
Request examples
{
"version": 42
}
Response examples (200)
{
"org_id": "string",
"version": 42,
"config": {},
"updated_at": "string"
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"ctx": {}
}
]
}