Publish Post
Publish an existing post now.
POST /v1/posts/:id/publish
Publish an existing post immediately.
Auth: Bearer API key (required)
Headers
| Header | Required | Description |
|---|---|---|
Idempotency-Key | Recommended | Safe retry — see Idempotency |
Response 202
{
"tracking_id": "uuid",
"status": "queued",
"stream_url": "/v1/jobs/{tracking_id}/stream"
}status: "queued"= job accepted; publish runs in the backgroundstream_urlis a relative path. Full URL:https://api.social0.app/v1/jobs/{tracking_id}/stream
cURL
curl -X POST https://api.social0.app/v1/posts/POST_UUID/publish \
-H "Authorization: Bearer sk_live_YOUR_KEY" \
-H "Idempotency-Key: $(uuidgen)"