Skip to main content
social:write The social:write scope allows managing social posts across all connected platforms (X, Facebook, Instagram, LinkedIn, Google Business Profile). A single post can target multiple platforms via the platforms[] array; publishing and scheduling are delegated to Zernio and reflected asynchronously via social.post.* webhooks.

Endpoints

MethodPathDescription
POST/public/social/postsCreate / schedule / publish a post
PATCH/public/social/posts/{id}Update a draft or scheduled post
DELETE/public/social/posts/{id}Delete or cancel a post
POST/public/social/posts/{id}/unpublishUnpublish a platform target
POST/public/social/posts/{id}/retryRepublish a failed/cancelled post

Error response — Missing scope

{
  "error": {
    "code": "forbidden",
    "message": "This API key requires one of the following scopes: social:write",
    "details": {
      "required_scopes": ["social:write"]
    }
  }
}
Last modified on June 30, 2026