SIP Credential Resource
The Credential resource stores usernames and password information.
Each Username requires a corresponding password that meets the requirements in the Password parameter's description.
We don't store the passwords you provide in the credential records as cleartext. Instead, they are MD5 hashed in accordance with the digest authentication specification.
A 34 character string that uniquely identifies this resource.
^CR[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id of the Account that is responsible for this resource.
^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the credential list that includes this credential.
^CL[0-9a-fA-F]{32}$Min length: 34Max length: 34The date that this resource was created, given as GMT in RFC 2822 format.
The date that this resource was last updated, given as GMT in RFC 2822 format.
The URI for this resource, relative to https://api.twilio.com
POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/SIP/CredentialLists/{CredentialListSid}/Credentials.json
The unique id of the Account that is responsible for this resource.
^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the credential list to include the created credential.
^CL[0-9a-fA-F]{32}$Min length: 34Max length: 34application/x-www-form-urlencodedThe 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.
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)
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function createSipCredential() {11const credential = await client.sip12.credentialLists("CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")13.credentials.create({14password: "password",15username: "username",16});1718console.log(credential.sid);19}2021createSipCredential();
Response
1{2"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",3"credential_list_sid": "CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",4"date_created": "Wed, 19 Aug 2015 19:48:45 +0000",5"date_updated": "Wed, 19 Aug 2015 19:48:45 +0000",6"sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",7"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SIP/CredentialLists/CLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Credentials/CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",8"username": "username"9}
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/SIP/CredentialLists/{CredentialListSid}/Credentials/{Sid}.json
The unique id of the Account that is responsible for this resource.
^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the credential list that contains the desired credential.
^CL[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the resource to fetch.
^CR[0-9a-fA-F]{32}$Min length: 34Max length: 341// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function fetchSipCredential() {11const credential = await client.sip12.credentialLists("CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")13.credentials("CRXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")14.fetch();1516console.log(credential.sid);17}1819fetchSipCredential();
Response
1{2"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",3"credential_list_sid": "CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",4"date_created": "Wed, 19 Aug 2015 19:48:45 +0000",5"date_updated": "Wed, 19 Aug 2015 19:48:45 +0000",6"sid": "CRXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",7"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SIP/CredentialLists/CLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Credentials/CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",8"username": "1440013725.28"9}
GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/SIP/CredentialLists/{CredentialListSid}/Credentials.json
The unique id of the Account that is responsible for this resource.
^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the credential list that contains the desired credentials.
^CL[0-9a-fA-F]{32}$Min length: 34Max length: 34How many resources to return in each list page. The default is 50, and the maximum is 1000.
1Maximum: 1000The page token. This is provided by the API.
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function listSipCredential() {11const credentials = await client.sip12.credentialLists("CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")13.credentials.list({ limit: 20 });1415credentials.forEach((c) => console.log(c.sid));16}1718listSipCredential();
Response
1{2"credentials": [3{4"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",5"credential_list_sid": "CLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",6"date_created": "Wed, 19 Aug 2015 19:48:45 +0000",7"date_updated": "Wed, 19 Aug 2015 19:48:45 +0000",8"sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",9"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SIP/CredentialLists/CLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Credentials/CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",10"username": "1440013725.28"11}12],13"end": 0,14"first_page_uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SIP/CredentialLists/CLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Credentials.json?PageSize=50&Page=0",15"next_page_uri": null,16"page": 0,17"page_size": 50,18"previous_page_uri": null,19"start": 0,20"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SIP/CredentialLists/CLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Credentials.json?PageSize=50&Page=0"21}
POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/SIP/CredentialLists/{CredentialListSid}/Credentials/{Sid}.json
The update action is used to update a user's password.
The unique id of the Account that is responsible for this resource.
^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the credential list that includes this credential.
^CL[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the resource to update.
^CR[0-9a-fA-F]{32}$Min length: 34Max length: 34application/x-www-form-urlencodedThe 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)
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function updateSipCredential() {11const credential = await client.sip12.credentialLists("CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")13.credentials("CRXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")14.update({ password: "password" });1516console.log(credential.sid);17}1819updateSipCredential();
Response
1{2"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",3"credential_list_sid": "CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",4"date_created": "Wed, 19 Aug 2015 19:48:45 +0000",5"date_updated": "Wed, 19 Aug 2015 19:48:45 +0000",6"sid": "CRXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",7"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/SIP/CredentialLists/CLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Credentials/CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json",8"username": "username"9}
DELETE https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/SIP/CredentialLists/{CredentialListSid}/Credentials/{Sid}.json
The unique id of the Account that is responsible for this resource.
^AC[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the credential list that contains the desired credentials.
^CL[0-9a-fA-F]{32}$Min length: 34Max length: 34The unique id that identifies the resource to delete.
^CR[0-9a-fA-F]{32}$Min length: 34Max length: 341// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function deleteSipCredential() {11await client.sip12.credentialLists("CLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")13.credentials("CRXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")14.remove();15}1617deleteSipCredential();