Skip to main content
POST
/
api
/
instances
/
{instanceId}
/
status
/
text
Send a text status/story
curl --request POST \
  --url https://api.wappfy.io/api/instances/{instanceId}/status/text \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "<string>",
  "backgroundColor": "#00bfa5",
  "font": 1
}
'
{
  "ok": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

instanceId
string<uuid>
required

The WhatsApp instance UUID

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

Body

application/json
text
string
required

Text content of the status

backgroundColor
string

Background color in hex format

Example:

"#00bfa5"

font
number

Font index (0-5)

Example:

1

Response

Text status published

ok
boolean
required

Operation succeeded

Example:

true