v1
latestOpenAPI 3.1.02026-07-1413113265.9 KBstory
[BETA] post a text or media status/story
Publishes a status update visible to contacts per the user's privacy settings. Provide content for a text status (with optional backgroundColor ARGB integer and fontStyle 0-7) or mediaUrl (plus optional mediaCaption) for an image/video/audio status. Note: This endpoint is currently in beta and may change without notice.
post/instances/{id}/client/action/post-status
Path parameters
idinteger required
Instance ID
Request body
Example request
{
"content": "Hello from WaAPI!",
"mediaUrl": "https://example.com/image.jpg",
"backgroundColor": 4286070949
}Response
Status posted successfully
Example response
{
"status": "success",
"instanceId": "1",
"data": {
"posted": true
},
"links": {
"self": "https://waapi.app/api/v1/instances/1/client/action/post-status"
}
}