Fetch a specific instance of a credential list mapping
GET
/2010-04-01/Accounts/{AccountSid}/SIP/Domains/{DomainSid}/Auth/Calls/CredentialListMappings/{Sid}.json https://api.twilio.com
Fetch a specific instance of a credential list mapping
Parameters
path Path Parameters
| Name | Type |
|---|---|
AccountSid
required
The SID of the Account that created the CredentialListMapping resource to fetch. | `AC${string}` |
DomainSid
required
The SID of the SIP domain that contains the resource to fetch. | `SD${string}` |
Sid
required
The Twilio-provided string that uniquely identifies the CredentialListMapping resource to fetch. | `CL${string}` |
Responses
200 application/json
OK
interface ApiV2010AccountSipSipDomainSipAuthSipAuthCallsSipAuthCallsCredentialListMapping {
account_sid?: `AC${string}` | null;
date_created?: string | null;
date_updated?: string | null;
friendly_name?: string | null;
sid?: `CL${string}` | null;
}
account_sid?: `AC${string}` | null;
date_created?: string | null;
date_updated?: string | null;
friendly_name?: string | null;
sid?: `CL${string}` | null;
}