Create a new credential resource
Username and password information for SIP Domains
Create a new credential resource.
Path parameters
-
The unique id of the Account that is responsible for this resource.
-
The unique id that identifies the credential list to include the created credential.
Body
-
The password that the username will use when authenticating SIP requests. The password must be a minimum of 12 characters, contain at least 1 digit, and have mixed case. (eg
IWasAtSignal2018
) -
The username that will be passed when authenticating SIP requests. The username should be sent in response to Twilio's challenge of the initial INVITE. It can be up to 32 characters long.
POST /2010-04-01/Accounts/{AccountSid}/SIP/CredentialLists/{CredentialListSid}/Credentials.json
curl \
-X POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/SIP/CredentialLists/{CredentialListSid}/Credentials.json \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Password=string&Username=string'
Request example
{
"Password": "string",
"Username": "string"
}
Request examples
{
"Password": "string",
"Username": "string"
}
Response examples (201)
{
"account_sid": "string",
"credential_list_sid": "string",
"date_created": "string",
"date_updated": "string",
"sid": "string",
"uri": "https://example.com",
"username": "string"
}
Response examples (201)
{
"account_sid": "string",
"credential_list_sid": "string",
"date_created": "string",
"date_updated": "string",
"sid": "string",
"uri": "https://example.com",
"username": "string"
}