Webhooks

Handle status of message for each request

You can also receive webhooks when the status of your sender name changes. For this webhooks will be used the same rules like with events related to messaging.

JSON example:

{
  "event": "sender_name_updated",
  "organization_id": "string",
  "phone_number": "+13231112233",
  "sender": "ID string",
  "status": "active",
  "webhook_id": "string"
}
Field
Type
Description

webhook_id

String

Unique identifier of the event.

organization_id

String

ID of the organization to which the sender is assigned.

event

String

Check the Event Types section for possible values.

status

String

New sender name status. Possible values: active, pending, canceled, canceled, suspended .

phone_number

String

Optional Field. Assigned phone number

sender

String

Dedicated sender name ID.

Event Types

circle-info

All values will be in lowercase and in snake_case format

Event type
Description

sender_name_updated

Your sender has a status update

Headers

These headers will be included in any webhook POST request.

Key
Value

Content-Type

application/json

User-Agent

LoopMessage

Connection

close

Last updated