GET
/
v1
/
messages
/
{messageID}
Get message by ID
curl --request GET \
  --url https://api.wazapin.id/v1/messages/{messageID} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "message": "<string>"
  },
  "$schema": "<string>"
}

Authorizations

Authorization
string
header
required

Session token or API key

Path Parameters

messageID
string
required

Message ID

Response

OK

data
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/MessageOutputBody.json"