Skip to main content
PUT
Update OAuth application
Updates an OAuth application configuration. Only OWNERS and ADMINS can update OAuth applications.
Client ID and secret cannot be changed. Only name, description, redirect URI, scopes, and status can be updated.

Permissions

Only OWNERS and ADMINS can update OAuth applications.

Path Parameters

Request Body

Example Request

Example Response

Common Errors

400 Bad Request

Invalid input data or validation errors.

401 Unauthorized

Authentication required.

403 Forbidden

Only owners and admins can update OAuth applications.

404 Not Found

OAuth application not found with the provided client ID.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

clientId
string
required

Body

application/json
name
string

Application name

Maximum string length: 100
Example:

"My Integration"

description
string

Application description

Maximum string length: 500
Example:

"Integration for managing organization data"

redirectUri
string

Redirect URI for OAuth flow

Example:

"https://example.com/callback"

scopes
array[]

OAuth scopes requested

Example:
isActive
boolean

Whether the application is active

Example:

true

Response

Application updated successfully with new configuration.