API ReferencePosts
Cancel a post
Cancel a scheduled or pending post by ID. Returns 404 if the post does not exist or is not in a cancellable state.
Authorization
ApiKey AuthorizationBearer <token>
API key in the format smcp_<64 hex chars>.
In: header
Path Parameters
workspaceId*string
id*string
Response Body
application/json
application/json
application/json
curl -X DELETE "https://api.postato.com.br/v1/workspaces/string/posts/string"{
"success": true
}{
"error": "string",
"message": "string",
"details": null
}{
"error": "not_found"
}Update a post
Partially update a post — currently supports changing status (e.g. publishing a draft or cancelling a scheduled post). Returns 404 if the post does not exist.
Generate presigned upload URL
Request a presigned PUT URL to upload a media file directly to storage. Call POST /media/:id/confirm after the upload completes.