External messages

List external messages

get

Retrieve a collection of external messages.

Authorizations
Responses
200
OK
application/json
get
GET /api/external_messages HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "count": 100,
  "items": [
    {
      "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
      "config_id": "NzAwNTUxOTA5NzczMTQ4MTYw",
      "sender": "text",
      "sender_name": "text",
      "receiver": "text",
      "receiver_name": "text",
      "channel_name": "text",
      "channel_number": "text",
      "brand": "text",
      "did": "text",
      "msg_type": "UNKNOWN",
      "direction": "IN",
      "content": "text",
      "reason": "text",
      "delivery": "ERR",
      "provider_msg_id": "text",
      "created_at": "2017-07-21T17:32:28Z"
    }
  ]
}

Retrieve external message detailed information.

get

Retrieve details of external message.

Authorizations
Path parameters
idall ofRequired

The unique ID of external message.

stringOptional

The unique ID of the resource.

Example: NzAwNTUxOTA5NzczMTQ4MTYw
Responses
200
OK
application/json
get
GET /api/external_messages/{id} HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
  "config_id": "NzAwNTUxOTA5NzczMTQ4MTYw",
  "sender": "text",
  "sender_name": "text",
  "receiver": "text",
  "receiver_name": "text",
  "channel_name": "text",
  "channel_number": "text",
  "brand": "text",
  "did": "text",
  "msg_type": "UNKNOWN",
  "direction": "IN",
  "content": "text",
  "reason": "text",
  "delivery": "ERR",
  "provider_msg_id": "text",
  "created_at": "2017-07-21T17:32:28Z"
}