syndication

PUT /v1/syndication/plans/{planId}

Change a plan's channels or behaviour.

All syndication endpoints

Authentication

Send an API key as a bearer token. This endpoint does not state a specific permission in the specification, so give your key the least it needs and check the response rather than assuming.

This endpoint takes no organisation id. Your key already identifies the organisation it belongs to, and the response is scoped to it.

Try it

Replace anything in angle brackets with your own values, and the key placeholder with a key from your dashboard.

curl -X PUT https://api.zinndigital.com/v1/syndication/plans/{planId} \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "scope": <string<post, recipe, org_default>> }'

Signed in? The API console in your dashboard fills in your real organisation id and your own key, and runs the request against the live API so you can see the actual response. Open this endpoint in the API console

Details

Replaces the plan's channel set with `connection_ids`. ⛔ Each id is re-checked against the CALLER's scope, not merely the plan's org — a connection id is a UUID somebody could paste, and a plan naming another tenant's connection would post this article to that tenant's account. Gated on `syndication.manage`.

Parameters

NameTypeRequiredWhat it is
planId (path)stringYes

Request body

NameTypeRequiredWhat it is
scopestring<post, recipe, org_default>Yes
post_idstringNo
recipe_idstringNo
enabledbooleanNo
write_modestring<ai_per_channel, one_text>No
approval_modestring<hold, send>No
connection_idsstring[]No

Response

NameTypeRequiredWhat it is
idstringYes
scopestring<post, recipe, org_default>YesMost specific wins — an article's own plan beats its recipe's beats the org default.
post_idstringYes
recipe_idstringYes
enabledbooleanYes
write_modestring<ai_per_channel, one_text>Yes⚖️ Owner ruling 2026-08-20 — the AI writes per channel by default, because an X post and a LinkedIn update are not the same piece of writing.
approval_modestring<hold, send>Yes⚖️ Owner ruling 2026-08-20 — hold for approval by default.
channelsSyndicationPlanChannel[]Yes
created_atstringYes

Errors this endpoint can return

401 · 403 · 404