Fetch a notification belonging to the account used to make the request
GET
/2010-04-01/Accounts/{AccountSid}/Notifications/{Sid}.json https://api.twilio.com
Fetch a notification belonging to the account used to make the request
Parameters
path Path Parameters
| Name | Type |
|---|---|
AccountSid
required
The SID of the Account that created the Notification resource to fetch. | `AC${string}` |
Sid
required
The Twilio-provided string that uniquely identifies the Notification resource to fetch. | `NO${string}` |
Responses
200 application/json
OK
interface ApiV2010AccountNotificationInstance {
account_sid?: `AC${string}` | null;
api_version?: string | null;
call_sid?: `CA${string}` | null;
date_created?: string | null;
date_updated?: string | null;
error_code?: string | null;
log?: string | null;
message_date?: string | null;
message_text?: string | null;
more_info?: string | null;
request_method?: "GET" | "POST" | null;
request_url?: string | null;
request_variables?: string | null;
response_body?: string | null;
response_headers?: string | null;
sid?: `NO${string}` | null;
uri?: string | null;
}
account_sid?: `AC${string}` | null;
api_version?: string | null;
call_sid?: `CA${string}` | null;
date_created?: string | null;
date_updated?: string | null;
error_code?: string | null;
log?: string | null;
message_date?: string | null;
message_text?: string | null;
more_info?: string | null;
request_method?: "GET" | "POST" | null;
request_url?: string | null;
request_variables?: string | null;
response_body?: string | null;
response_headers?: string | null;
sid?: `NO${string}` | null;
uri?: string | null;
}