Create OAuth client
Create a new OAuth client
POST
JavaScript
Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
The name of the OAuth client
Example:
"My OAuth client"
List of allowed OAuth scopes
Example:
["admin"]
OAuth client type
Available options:
public, confidential List of allowed OAuth grant types
Available options:
client_credentials, authorization_code, refresh_token Whether PKCE (Proof Key for Code Exchange) is required for this client
List of redirect URIs (required for authorization_code flow)
URL of the client logo
URL of the client's privacy policy
URL of the client's terms of service
Response
OAuth client created successfully
JavaScript