Skip to main content
PATCH
/
carousels
/
{id}
Update a carousel
curl --request PATCH \
  --url https://app.autoposting.ai/api-proxy/carousels/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "5 Growth Hacks for 2025",
  "slides": [
    {
      "title": "Hook",
      "body": "Most founders ignore this...",
      "imageUrl": "<string>"
    }
  ]
}
'
{
  "success": true,
  "data": {
    "id": "car_01HXYZ",
    "brandSlug": "acme-corp",
    "title": "5 Growth Hacks for 2025",
    "slides": [
      {
        "id": "slide_01",
        "title": "Hook",
        "body": "Most founders ignore this...",
        "imageUrl": null,
        "order": 0
      }
    ],
    "design": null,
    "status": "draft",
    "createdAt": "2024-01-01T00:00:00Z",
    "updatedAt": "2024-01-01T00:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Carousel ID.

Example:

"car_01HXYZ"

Body

application/json
title
string

Updated title.

Example:

"5 Growth Hacks for 2025"

slides
object[]

Full replacement of slides array. Order is determined by array index.

Response

Carousel updated

success
boolean
Example:

true

data
object