action twilio_list_sip_credential { label: "ListSipCredential" description: "Retrieve a list of credentials." provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/SIP/CredentialLists/{CredentialListSid}/Credentials.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } CredentialListSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } } required: ["AccountSid", "CredentialListSid"] additionalProperties: false } output: { type: "object" properties: { credentials: { type: "array" items: { type: "object" properties: { account_sid: { type: "string" description: "The unique id of the Account that is responsible for this resource." } credential_list_sid: { type: "string" description: "The unique id that identifies the credential list that includes this credential." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date that this resource was created, given as GMT in [RFC 2822](https://www.php.net/manual/en/class.datetime.php#datetime.constants.rfc2822) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date that this resource was last updated, given as GMT in [RFC 2822](https://www.php.net/manual/en/class.datetime.php#datetime.constants.rfc2822) format." } sid: { type: "string" description: "A 34 character string that uniquely identifies this resource." } uri: { type: "string" description: "The URI for this resource, relative to `https://api.twilio.com`" } username: { type: "string" description: "The username for this credential." } } } } end: { type: "integer" } first_page_uri: { type: "string" format: "uri" } next_page_uri: { type: "string" format: "uri" } page: { type: "integer" } page_size: { type: "integer" } previous_page_uri: { type: "string" format: "uri" } start: { type: "integer" } uri: { type: "string" format: "uri" } } } }