v52

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Call Recordings

Create a custom storage credential

Creates a custom storage credentials configuration.

post/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' | 's3-generic' | 'azure' required

Example request

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

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

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