Applications
Update Application
Modify fields of an existing OAuth2 application. Fields such as name, description, home_url, or callback_url can be modified. To reset the client secret, set "client_secret": "".
patch/applications/{client_id}/
Path parameters
client_idstring required
Request body
object required
Example request
{
"application/json": {
"data": {
"type": "applications",
"attributes": {
"name": "My Updated App",
"description": "Updated description"
}
}
}
}Response
Application successfully updated.