Create brand
POST
/accounts/{accountID}/branding
curl --request POST \
--url https://api.moov.io/accounts/{accountID}/branding \
--header 'content-type: application/json' \
--data '{"colors":{"light":{"accent":"#111111"},"dark":{"accent":"#ffffff"}}}'
Branding created.
{
"colors": {
"dark": {
"accent": "#ffffff"
},
"light": {
"accent": "#111111"
}
}
}
The user is not authorized to make the request.
Request received, but resource was not found.
The parameters provided are not processable.
Request was refused due to rate limiting.
Response headers
Retry-After
number
Path parameters
accountID
string
<uuid>
required
ID of the account.
Body
application/json
colors
object
required
Show child attributes
dark
object
required
Show child attributes
accent
string
required
A CSS hex color representing the accent color for use in dark mode.
light
object
required
Show child attributes
accent
string
required
A CSS hex color representing the accent color for use in light mode.
Response
application/json
colors
object
required
Show child attributes
dark
object
required
Show child attributes
accent
string
required
A CSS hex color representing the accent color for use in dark mode.
light
object
required
Show child attributes
accent
string
required
A CSS hex color representing the accent color for use in light mode.