Skip to main content
PUT
/
brands
/
reorder
Reorder Brands
curl --request PUT \
  --url https://app.autoposting.ai/api-proxy/brands/reorder \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "brandIds": [
    "brand_02",
    "brand_01",
    "brand_03"
  ]
}
'
{
  "success": true,
  "data": {}
}

Authorizations

Authorization
string
header
required

API key as Authorization: Bearer sk-social-...

Body

application/json
brandIds
string[]
required

Array of brand IDs in the desired display order.

Example:
["brand_02", "brand_01", "brand_03"]

Response

Brands reordered.

success
boolean
required
Example:

true

data
object
required