Toda la documentación
DOCS api / typical workflow

Typical Workflow

Recommended integration flow for Social Publisher.

Typical Workflow

Here is a practical workflow for integrating with the current microservice:

  1. Create API key
    • Call POST /api-keys and store the returned key securely.
  2. Register webhook (optional, recommended)
    • Call POST /webhooks to receive post.published, post.failed, post.partial.
  3. Create post
    • Immediate publish: POST /posts
    • Scheduled publish: POST /posts/schedule
  4. Track result
    • Fetch list: GET /posts
    • Fetch one post: GET /posts/:id
  5. Cancel scheduled post if needed
    • Call DELETE /posts/:id (only works when status is scheduled)

Use social_account_ids instead of platforms.
platforms is still accepted for legacy compatibility.