POST
/
message
/
read
curl --request POST \
  --url https://api.interacto.io/message/read \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'Instance-Id: <instance-id>' \
  --data '{
  "to": "5511999999999",
  "messageId": "8360B1C201E2804DFDAF41E3A7FBEFF7"
}'
{
  "statusCode": 200,
  "message": "request successful",
  "data": {
    "read": true
  }
}

Authorizations

Authorization
string
header
required

API Key needed to access the endpoints

Headers

Instance-Id
string
required

Unique identifier for the instance

Body

application/json
to
string
required

Destinatário da mensagem

Example:

"5511999999999"

messageId
string
required

ID da mensagem

Example:

"8360B1C201E2804DFDAF41E3A7FBEFF7"

Response

200 - application/json
Message sent successfully
statusCode
integer
Example:

200

message
string
Example:

"request successful"

data
object