The post is the core resource of Dravo. You create a post against one or more
connected accounts and Dravo delivers it asynchronously. The response returns the
post id; use it to get the post or cancel it while scheduled. For the model
behind these calls, read async publishing.
The post resource
A post fans out to one or more connected accounts. Each endpoint lives on its own page:
- Create a post:
POST /v1/posts - List posts:
GET /v1/posts - Get a post:
GET /v1/posts/{id} - Cancel a scheduled post:
POST /v1/posts/{id}/cancel
Per-platform publish options live in the create endpoint because they are part of
the POST /v1/posts request body. See Create a post
for every accepted platform_options key, examples, validation rules and
platform-specific behavior.