v47

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-181,0851,7264.5 MB
Call Recordings

Update a stored credential

Updates a stored custom credentials configuration.

put/custom_storage_credentials/{connection_id}

Path parameters

connection_idstring required

Uniquely identifies a Telnyx application (Call Control, TeXML) or Sip connection resource.

Request body

backend'gcs' | 's3' | 'azure' required

Example request

{
  "backend": "gcs",
  "configuration": {
    "credentials": "OPAQUE_CREDENTIALS_TOKEN",
    "bucket": "example-bucket"
  }
}

Response

A response containing a credentials resource.

connection_idstring required

Uniquely identifies a Telnyx application (Call Control, TeXML) or Sip connection resource.

record_type'custom_storage_credentials' required

Identifies record type.

Example response

{
  "data": {
    "backend": "gcs",
    "configuration": {
      "credentials": "OPAQUE_CREDENTIALS_TOKEN",
      "bucket": "example-bucket"
    }
  },
  "connection_id": "1234567890"
}