Skip to main content
POST
/
v1
/
messages
/
mark-read
Mark a received message as read (optionally show typing)
curl --request POST \
  --url https://api.keebai.com/v1/messages/mark-read \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone_number_id": "100000000000001",
  "message_id": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Personal Access Token con prefijo kbai_pk_. Generar desde el portal con permiso developer.manage_tokens.

Body

application/json
phone_number_id
string
required

WhatsApp Business phone_number_id (numeric identifier issued by Meta for the sending number).

Example:

"100000000000001"

message_id
string
required

Meta message_id (wamid.*) to mark as read.

typing_indicator
enum<string>
Available options:
text,
off

Response

200 - application/json
success
boolean
required