Retrieve a credential suggestion
GET/security/connections/:connection_id/credential_authentication/suggestion
Retrieve suggestions for user_name and password to use when setting the credentials associated with a connection.
Request
Path Parameters
connection_id stringrequired
ID of the connection for which a user_name and password will be suggested
Responses
200: Credential Authentication suggestion response
- application/json
400: Bad Request
401: Unauthorized
404: Record Not Found
Request samples
curl -L 'https://api.telnyx.com/security/connections/:connection_id/credential_authentication/suggestion' \
-H 'Accept: application/json'
Response samples
{
"user_name": "string",
"password": "string"
}