Retrieve a stored credential
GET/custom_storage_credentials/:connection_id
Returns the information about custom storage credentials.
Request
Path Parameters
connection_id stringrequired
Uniquely identifies a Telnyx application (Call Control, TeXML) or Sip connection resource.
Responses
200: A response with credentials resource.
- application/json
default: Unexpected error.
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/custom_storage_credentials/:connection_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": {
"backend": "gcs",
"configuration": {}
},
"record_type": "string"
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}