Skip to content

Update an application

PUT
/api/v4/user/applications/{id}

Updates an existing application owned by the authenticated user.

id
required
integer

ID of the application. Differs from the application_id.

Media type application/json
object
name

Name of the application.

string
nullable
scopes

Scopes available to the application. Separate multiple scopes with a space.

string
nullable
Example generated
{
"name": "example",
"scopes": "example"
}

OK

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

Bad Request

Not Found