Message specific event definitions.
Name | Description |
---|---|
com.voxie.message.delivered | A sent message has been delivered. |
com.voxie.message.expired | A sent message has expired. |
com.voxie.message.failed | A sent message has failed. |
com.voxie.message.received | A message has been received. |
com.voxie.message.sent | A message has been queued for sending. |
com.voxie.message.undelivered | A sent message was undelivered. |
com.voxie.message.delivered
{
"at": "2021-06-24T15:21:35Z",
"team_id": 1,
"contact_id": 288331,
"message_id": 1338821
}
Schema: https://registry.voxie.com/schema/v1/message/delivered.json.
com.voxie.message.expired
{
"at": "2021-06-24T15:21:35Z",
"team_id": 1,
"contact_id": 288331,
"message_id": 1338821
}
Schema: https://registry.voxie.com/schema/v1/message/expired.json.
com.voxie.message.failed
{
"at": "2021-06-24T15:21:35Z",
"team_id": 1,
"contact_id": 288331,
"message_id": 1338821
}
Schema: https://registry.voxie.com/schema/v1/message/failed.json.
com.voxie.message.received
{
"at": "2021-06-24T15:21:35Z",
"team_id": 1,
"contact_id": 288331,
contact_first_name: "Example",
contact_last_name: "Contact",
message_id: 1338821,
channel: "sms",
from: "+15551111111",
to: "+15552222222",
content: "Thanks!"
}
Schema: https://registry.voxie.com/schema/v1/message/received.json.
com.voxie.message.sent
{
"at": "2021-06-24T15:21:35Z",
"team_id": 1,
"contact_id": 288331,
contact_first_name: "Example",
contact_last_name: "Contact",
message_id: 1338821,
origin_type: "User",
origin_id: "1",
channel: "sms",
from: "+15551111111",
to: "+15552222222",
content: "Thanks for signing up!"
}
Schema: https://registry.voxie.com/schema/v1/message/sent.json.
com.voxie.message.undelivered
{
"at": "2021-06-24T15:21:35Z",
"team_id": 1,
"contact_id": 288331,
"message_id": 1338821
}
Schema: https://registry.voxie.com/schema/v1/message/undelivered.json.