Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

REST API: Notifications [DEPRECATED]


(error)

Danger

The Notifications resource has been deprecated and replaced by Alerts. Notifications may be removed in future versions of the Twilio API. Since the Alerts resource is a superset of Notifications, we recommend its use going forward.

A Notification instance represents a single log entry made by Twilio during the handling of calls or use of the REST API. This resource is helpful for debugging issues with calls and the REST API.

The Notifications list represents the set of notifications generated for an account. For convenience, a Notifications list resource is also available as a subresource of a Call instance resource. This resource is scoped to an individual call so that you can navigate directly from a call to the notifications generated from that call.


Notification Properties

notification-properties page anchor
(error)

Danger

Be aware that, unlike other areas of this REST API, the representation of a Notification instance is different from that of Notification representations within responses from the list resource.

Due to the potentially voluminous amount of data in a notification, the full HTTP request and response data is only returned in the Notification instance resource representation.

Resource properties
account_sidtype: SID<AC>Not PII

api_versiontype: stringNot PII

The API version used to generate the notification. Can be empty for events that don't have a specific API version, such as incoming phone calls.


call_sidtype: SID<CA>Not PII

The SID of the Call(link takes you to an external page) the Notification resource is associated with.


date_createdtype: string<DATE TIME RFC 2822>Not PII

The date and time in GMT that the resource was created specified in RFC 2822(link takes you to an external page) format.


date_updatedtype: string<DATE TIME RFC 2822>Not PII

The date and time in GMT that the resource was last updated specified in RFC 2822(link takes you to an external page) format.


error_codetype: stringNot PII

A unique error code for the error condition that is described in our Error Dictionary(link takes you to an external page).


logtype: stringNot PII

An integer log level that corresponds to the type of notification: 0 is ERROR, 1 is WARNING.


message_datetype: string<DATE TIME RFC 2822>Not PII

The date the notification was actually generated in RFC 2822(link takes you to an external page) format. Message buffering can cause this value to differ from date_created.


message_texttype: stringNot PII

The text of the notification.


more_infotype: string<URI>Not PII

The URL for more information about the error condition. This value is a page in our Error Dictionary(link takes you to an external page).


request_methodtype: enum<HTTP METHOD>Not PII

The HTTP method used to generate the notification. If the notification was generated during a phone call, this is the HTTP Method used to request the resource on your server. If the notification was generated by your use of our REST API, this is the HTTP method used to call the resource on our servers.

Possible values:
HEADGETPOSTPATCHPUTDELETE

request_urltype: string<URI>Not PII

The URL of the resource that generated the notification. If the notification was generated during a phone call, this is the URL of the resource on your server that caused the notification. If the notification was generated by your use of our REST API, this is the URL of the resource you called.


sidtype: SID<NO>Not PII

The unique string that that we created to identify the Notification resource.


uritype: stringNot PII

The URI of the resource, relative to https://api.twilio.com.


request_variablestype: stringNot PII

The HTTP GET or POST variables we sent to your server. However, if the notification was generated by our REST API, this contains the HTTP POST or PUT variables you sent to our API.


response_bodytype: stringNot PII

The HTTP body returned by your server.


response_headerstype: stringNot PII

The HTTP headers returned by your server.

:::


Fetch a Notification resource

fetch-a-notification-resource page anchor
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Notifications/{Sid}.json

Parameters

fetch-parameters page anchor
URI parameters
AccountSidtype: SID<AC>Not PII
Path Parameter

The SID of the Account(link takes you to an external page) that created the Notification resource to fetch.


Sidtype: SID<NO>Not PII
Path Parameter

The Twilio-provided string that uniquely identifies the Notification resource to fetch.

Includes a default Notification SID.

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_10
// Download the helper library from https://www.twilio.com/docs/node/install
_10
// Find your Account SID and Auth Token at twilio.com/console
_10
// and set the environment variables. See http://twil.io/secure
_10
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_10
const authToken = process.env.TWILIO_AUTH_TOKEN;
_10
const client = require('twilio')(accountSid, authToken);
_10
_10
client.notifications('NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
_10
.fetch()
_10
.then(notification => console.log(notification.callSid));

Output

_19
{
_19
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"api_version": "2008-08-01",
_19
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"date_created": "Mon, 13 Sep 2010 20:02:01 +0000",
_19
"date_updated": "Mon, 13 Sep 2010 20:02:01 +0000",
_19
"error_code": "11200",
_19
"log": "0",
_19
"message_date": "Mon, 13 Sep 2010 20:02:00 +0000",
_19
"message_text": "EmailNotification=false&LogLevel=ERROR&sourceComponent=12000&Msg=&httpResponse=500&ErrorCode=11200&url=http%3A%2F%2Fvoiceforms4000.appspot.com%2Ftwiml",
_19
"more_info": "http://www.twilio.com/docs/errors/11200",
_19
"request_method": "get",
_19
"request_url": "https://voiceforms4000.appspot.com/twiml/9436/question/0",
_19
"request_variables": "AccountSid=ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&CallStatus=in-progress&ToZip=94937&ToCity=INVERNESS&ToState=CA&Called=%2B14156694923&To=%2B14156694923&ToCountry=US&CalledZip=94937&Direction=inbound&ApiVersion=2010-04-01&Caller=%2B17378742833&CalledCity=INVERNESS&CalledCountry=US&CallSid=CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&CalledState=CA&From=%2B17378742833",
_19
"response_body": "Response body from your webhook URL as a string.",
_19
"response_headers": "Date=Mon%2C+13+Sep+2010+20%3A02%3A00+GMT&Content-Length=466&Connection=close&Content-Type=text%2Fhtml%3B+charset%3DUTF-8&Server=Google+Frontend",
_19
"sid": "NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications/NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
_19
}

Includes a sample Notification SID.

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_10
// Download the helper library from https://www.twilio.com/docs/node/install
_10
// Find your Account SID and Auth Token at twilio.com/console
_10
// and set the environment variables. See http://twil.io/secure
_10
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_10
const authToken = process.env.TWILIO_AUTH_TOKEN;
_10
const client = require('twilio')(accountSid, authToken);
_10
_10
client.notifications('NO5a7a84730f529f0a76b3e30c01315d1a')
_10
.fetch()
_10
.then(notification => console.log(notification.callSid));

Output

_19
{
_19
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"api_version": "2008-08-01",
_19
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_19
"date_created": "Mon, 13 Sep 2010 20:02:01 +0000",
_19
"date_updated": "Mon, 13 Sep 2010 20:02:01 +0000",
_19
"error_code": "11200",
_19
"log": "0",
_19
"message_date": "Mon, 13 Sep 2010 20:02:00 +0000",
_19
"message_text": "EmailNotification=false&LogLevel=ERROR&sourceComponent=12000&Msg=&httpResponse=500&ErrorCode=11200&url=http%3A%2F%2Fvoiceforms4000.appspot.com%2Ftwiml",
_19
"more_info": "http://www.twilio.com/docs/errors/11200",
_19
"request_method": "get",
_19
"request_url": "https://voiceforms4000.appspot.com/twiml/9436/question/0",
_19
"request_variables": "AccountSid=ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&CallStatus=in-progress&ToZip=94937&ToCity=INVERNESS&ToState=CA&Called=%2B14156694923&To=%2B14156694923&ToCountry=US&CalledZip=94937&Direction=inbound&ApiVersion=2010-04-01&Caller=%2B17378742833&CalledCity=INVERNESS&CalledCountry=US&CallSid=CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX&CalledState=CA&From=%2B17378742833",
_19
"response_body": "Response body from your webhook URL as a string.",
_19
"response_headers": "Date=Mon%2C+13+Sep+2010+20%3A02%3A00+GMT&Content-Length=466&Connection=close&Content-Type=text%2Fhtml%3B+charset%3DUTF-8&Server=Google+Frontend",
_19
"sid": "NO5a7a84730f529f0a76b3e30c01315d1a",
_19
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications/NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
_19
}


Read multiple Notification resources

read-multiple-notification-resources page anchor
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Notifications.json

URI parameters
AccountSidtype: SID<AC>Not PII
Path Parameter

The SID of the Account(link takes you to an external page) that created the Notification resources to read.


Logtype: integerNot PII
Query Parameter

Only read notifications of the specified log level. Can be: 0 to read only ERROR notifications or 1 to read only WARNING notifications. By default, all notifications are read.


MessageDatetype: string<DATE>Not PII
Query Parameter

Only show notifications for the specified date, formatted as YYYY-MM-DD. You can also specify an inequality, such as <=YYYY-MM-DD for messages logged at or before midnight on a date, or >=YYYY-MM-DD for messages logged at or after midnight on a date.


MessageDate<type: string<DATE>Not PII
Query Parameter

Only show notifications for the specified date, formatted as YYYY-MM-DD. You can also specify an inequality, such as <=YYYY-MM-DD for messages logged at or before midnight on a date, or >=YYYY-MM-DD for messages logged at or after midnight on a date.


MessageDate>type: string<DATE>Not PII
Query Parameter

Only show notifications for the specified date, formatted as YYYY-MM-DD. You can also specify an inequality, such as <=YYYY-MM-DD for messages logged at or before midnight on a date, or >=YYYY-MM-DD for messages logged at or after midnight on a date.


PageSizetype: integerNot PII
Query Parameter

How many resources to return in each list page. The default is 50, and the maximum is 1000.


Pagetype: integerNot PII
Query Parameter

The page index. This value is simply for client state.


PageTokentype: stringNot PII
Query Parameter

The page token. This is provided by the API.

Read Notifications without filters.

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_10
// Download the helper library from https://www.twilio.com/docs/node/install
_10
// Find your Account SID and Auth Token at twilio.com/console
_10
// and set the environment variables. See http://twil.io/secure
_10
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_10
const authToken = process.env.TWILIO_AUTH_TOKEN;
_10
const client = require('twilio')(accountSid, authToken);
_10
_10
client.notifications.list({limit: 20})
_10
.then(notifications => notifications.forEach(n => console.log(n.sid)));

Output

_28
{
_28
"end": 0,
_28
"first_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"previous_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"next_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=1",
_28
"notifications": [
_28
{
_28
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"api_version": "2008-08-01",
_28
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"date_created": "Thu, 30 Apr 2015 16:47:33 +0000",
_28
"date_updated": "Thu, 30 Apr 2015 16:47:35 +0000",
_28
"error_code": "21609",
_28
"log": "1",
_28
"message_date": "Thu, 30 Apr 2015 16:47:32 +0000",
_28
"message_text": "LogLevel=WARN&invalidStatusCallbackUrl=&Msg=Invalid+Url+for+callSid%3A+CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX+invalid+statusCallbackUrl%3A+&ErrorCode=21609",
_28
"more_info": "https://www.twilio.com/docs/errors/21609",
_28
"request_method": null,
_28
"request_url": "",
_28
"sid": "NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications/NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
_28
}
_28
],
_28
"page": 0,
_28
"page_size": 1,
_28
"start": 0,
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0"
_28
}

Read Notifications using filters.

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_10
// Download the helper library from https://www.twilio.com/docs/node/install
_10
// Find your Account SID and Auth Token at twilio.com/console
_10
// and set the environment variables. See http://twil.io/secure
_10
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_10
const authToken = process.env.TWILIO_AUTH_TOKEN;
_10
const client = require('twilio')(accountSid, authToken);
_10
_10
client.notifications.list({limit: 20})
_10
.then(notifications => notifications.forEach(n => console.log(n.sid)));

Output

_28
{
_28
"end": 0,
_28
"first_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"previous_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"next_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=1",
_28
"notifications": [
_28
{
_28
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"api_version": "2008-08-01",
_28
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"date_created": "Thu, 30 Apr 2015 16:47:33 +0000",
_28
"date_updated": "Thu, 30 Apr 2015 16:47:35 +0000",
_28
"error_code": "21609",
_28
"log": "1",
_28
"message_date": "Thu, 30 Apr 2015 16:47:32 +0000",
_28
"message_text": "LogLevel=WARN&invalidStatusCallbackUrl=&Msg=Invalid+Url+for+callSid%3A+CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX+invalid+statusCallbackUrl%3A+&ErrorCode=21609",
_28
"more_info": "https://www.twilio.com/docs/errors/21609",
_28
"request_method": null,
_28
"request_url": "",
_28
"sid": "NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications/NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
_28
}
_28
],
_28
"page": 0,
_28
"page_size": 1,
_28
"start": 0,
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0"
_28
}

Filter Notifications using params

filter-notifications-using-params page anchor

Read Notifications using a filter having params.

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_10
// Download the helper library from https://www.twilio.com/docs/node/install
_10
// Find your Account SID and Auth Token at twilio.com/console
_10
// and set the environment variables. See http://twil.io/secure
_10
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_10
const authToken = process.env.TWILIO_AUTH_TOKEN;
_10
const client = require('twilio')(accountSid, authToken);
_10
_10
client.notifications
_10
.list({log: 1, messageDate: new Date(Date.UTC(2009, 6, 6)), limit: 20})
_10
.then(notifications => notifications.forEach(n => console.log(n.sid)));

Output

_28
{
_28
"end": 0,
_28
"first_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"previous_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"next_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=1",
_28
"notifications": [
_28
{
_28
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"api_version": "2008-08-01",
_28
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"date_created": "Thu, 30 Apr 2015 16:47:33 +0000",
_28
"date_updated": "Thu, 30 Apr 2015 16:47:35 +0000",
_28
"error_code": "21609",
_28
"log": "1",
_28
"message_date": "Thu, 30 Apr 2015 16:47:32 +0000",
_28
"message_text": "LogLevel=WARN&invalidStatusCallbackUrl=&Msg=Invalid+Url+for+callSid%3A+CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX+invalid+statusCallbackUrl%3A+&ErrorCode=21609",
_28
"more_info": "https://www.twilio.com/docs/errors/21609",
_28
"request_method": null,
_28
"request_url": "",
_28
"sid": "NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications/NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
_28
}
_28
],
_28
"page": 0,
_28
"page_size": 1,
_28
"start": 0,
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0"
_28
}

Filter Notifications using limits

filter-notifications-using-limits page anchor

Read Notifications using a filter having a date limit.

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_14
// Download the helper library from https://www.twilio.com/docs/node/install
_14
// Find your Account SID and Auth Token at twilio.com/console
_14
// and set the environment variables. See http://twil.io/secure
_14
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_14
const authToken = process.env.TWILIO_AUTH_TOKEN;
_14
const client = require('twilio')(accountSid, authToken);
_14
_14
client.notifications
_14
.list({
_14
log: 1,
_14
messageDateAfter: new Date(Date.UTC(2009, 6, 6)),
_14
limit: 20
_14
})
_14
.then(notifications => notifications.forEach(n => console.log(n.sid)));

Output

_28
{
_28
"end": 0,
_28
"first_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"previous_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"next_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=1",
_28
"notifications": [
_28
{
_28
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"api_version": "2008-08-01",
_28
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"date_created": "Thu, 30 Apr 2015 16:47:33 +0000",
_28
"date_updated": "Thu, 30 Apr 2015 16:47:35 +0000",
_28
"error_code": "21609",
_28
"log": "1",
_28
"message_date": "Thu, 30 Apr 2015 16:47:32 +0000",
_28
"message_text": "LogLevel=WARN&invalidStatusCallbackUrl=&Msg=Invalid+Url+for+callSid%3A+CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX+invalid+statusCallbackUrl%3A+&ErrorCode=21609",
_28
"more_info": "https://www.twilio.com/docs/errors/21609",
_28
"request_method": null,
_28
"request_url": "",
_28
"sid": "NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications/NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
_28
}
_28
],
_28
"page": 0,
_28
"page_size": 1,
_28
"start": 0,
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0"
_28
}

Filter Notifications by date range

filter-notifications-by-date-range page anchor

Read Notifications using a filter having a date range.

Node.js
Python
C#
Java
Go
PHP
Ruby
twilio-cli
curl

_15
// Download the helper library from https://www.twilio.com/docs/node/install
_15
// Find your Account SID and Auth Token at twilio.com/console
_15
// and set the environment variables. See http://twil.io/secure
_15
const accountSid = process.env.TWILIO_ACCOUNT_SID;
_15
const authToken = process.env.TWILIO_AUTH_TOKEN;
_15
const client = require('twilio')(accountSid, authToken);
_15
_15
client.notifications
_15
.list({
_15
log: 1,
_15
messageDateBefore: new Date(Date.UTC(2009, 6, 8)),
_15
messageDateAfter: new Date(Date.UTC(2009, 6, 6)),
_15
limit: 20
_15
})
_15
.then(notifications => notifications.forEach(n => console.log(n.sid)));

Output

_28
{
_28
"end": 0,
_28
"first_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"previous_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0",
_28
"next_page_uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=1",
_28
"notifications": [
_28
{
_28
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"api_version": "2008-08-01",
_28
"call_sid": "CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"date_created": "Thu, 30 Apr 2015 16:47:33 +0000",
_28
"date_updated": "Thu, 30 Apr 2015 16:47:35 +0000",
_28
"error_code": "21609",
_28
"log": "1",
_28
"message_date": "Thu, 30 Apr 2015 16:47:32 +0000",
_28
"message_text": "LogLevel=WARN&invalidStatusCallbackUrl=&Msg=Invalid+Url+for+callSid%3A+CAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX+invalid+statusCallbackUrl%3A+&ErrorCode=21609",
_28
"more_info": "https://www.twilio.com/docs/errors/21609",
_28
"request_method": null,
_28
"request_url": "",
_28
"sid": "NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications/NOXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.json"
_28
}
_28
],
_28
"page": 0,
_28
"page_size": 1,
_28
"start": 0,
_28
"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Notifications.json?PageSize=1&Page=0"
_28
}


Rate this page: