Message
Get Message History
Retrieve message delivery history
GET
/
message
/
{id}
/
history
Authorization
Path
curl --request GET \
--url https://chat.zoko.io/v2/message/{id}/history \
--header 'apikey: <apikey>'
{
"history": [
{
"deliveryChannel": "whatsapp",
"details": {},
"happendAt": "2023-11-07T05:31:56Z",
"state": "delivered"
}
],
"messageId": "<string>"
}
Authorizations
apikey
string
headerrequiredAuthentication is done via apikey
provided for your account
Include the following in your request header
apikey: "your_apikey_here"
Path Parameters
id
string
requiredID of message
Response
200 - application/json
history
object[]
messageId
string
curl --request GET \
--url https://chat.zoko.io/v2/message/{id}/history \
--header 'apikey: <apikey>'
{
"history": [
{
"deliveryChannel": "whatsapp",
"details": {},
"happendAt": "2023-11-07T05:31:56Z",
"state": "delivered"
}
],
"messageId": "<string>"
}