⚠️ SECURITY: Only OWNERS and ADMINS can update OAuth applications. Allows updating name, scopes, redirect URIs, and status. Client ID and secret cannot be changed.
| Parameter | Type | Required | Description |
|---|---|---|---|
clientId | string | Yes | OAuth application client ID |
| Field | Type | Required | Description |
|---|---|---|---|
name | string | No | Application name (max 100 characters) |
description | string | No | Application description (max 500 characters) |
redirectUri | string | No | Redirect URI for OAuth flow |
scopes | array | No | OAuth scopes requested |
isActive | boolean | No | Whether the application is active |
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Application name
100"My Integration"
Application description
500"Integration for managing organization data"
Redirect URI for OAuth flow
"https://example.com/callback"
OAuth scopes requested
["read:organization", "write:organization"]Whether the application is active
true
Application updated successfully with new configuration.