Skip to main content
POST
/
clips
/
upload
/
complete
Complete multipart upload
curl --request POST \
  --url https://app.autoposting.ai/api-proxy/clips/upload/complete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "clipId": "<string>",
  "uploadId": "<string>",
  "parts": [
    {
      "partNumber": 1,
      "eTag": "abc123"
    }
  ]
}
'
{
  "success": true,
  "data": {}
}

Authorizations

Authorization
string
header
required

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

Body

application/json
clipId
string
required

Clip ID from the init step.

uploadId
string
required

Upload ID from the init step.

parts
object[]
required

Array of completed parts with their ETags.

Response

Multipart upload completed.

Standard success response envelope.

success
boolean
Example:

true

data
object