Skip to main content

Rotate an API key's secret

POST 
/auth/api_keys/:id/rotate_secret

Replaces an API key's secret with the backup secret. If no backup secret is set, the secret will be replaced with a newly generated value.

Request

Path Parameters

    id stringrequired

    The id of the API Key

Responses

200: Successful response

401: Authentication error

403: Authorization error

404: Resource not found

Request samples


curl -L -X POST 'https://api.telnyx.com/auth/api_keys/:id/rotate_secret' \
-H 'Accept: application/json'

Response samples


{
"data": {
"id": "f30e7596-586e-44e1-ae7d-53db10f144d3",
"description": "Tommy's Key",
"secret": "XXXXXXXXXXXXX",
"backup_secret": "XXXXXXXXXXXXX",
"status": "active",
"permission_groups": [
"string"
],
"admin": true,
"record_type": "api_key",
"created_at": "2018-02-08T18:49:22.998023Z",
"updated_at": "2018-02-08T18:49:22.998023Z"
}
}