Skip to content

Renew an application secret

POST
/api/v4/applications/{id}/renew-secret

Renew the secret of a specific application

id
required
integer

The ID of the application (not the application_id)

OK

Media type application/json
object
id
integer format: int64
application_id
string
application_name
string
callback_url
string
confidential
boolean
scopes
array
secret
string
Example
{
"id": 1,
"application_id": "5832fc6e14300a0d962240a8144466eef4ee93ef0d218477e55f11cf12fc3737",
"application_name": "MyApplication",
"callback_url": "https://redirect.uri",
"confidential": true,
"scopes": [
"api",
"read_user"
],
"secret": "ee1dd64b6adc89cf7e2c23099301ccc2c61b441064e9324d963c46902a85ec34"
}

Bad Request

Unauthorized

Forbidden

Not found