Apps
Update App
Partially update an app’s configuration.
PATCH
Partially updates an app. All body fields are optional — supply only what you want to change.
Request
Bearer <API_KEY> from Console > Developers > Workspace API Keys.application/jsonPath parameters
Client identifier of the app.
Request body
New display name for the app.
App-level brand logo as a base64 data URL (for example
data:image/webp;base64,...). Pass an empty string to remove the logo. Keep the encoded image small — the request body is limited to 1 MB.Replaces the full list of allowed OAuth redirect URIs. Pass an empty array to clear all URIs.
Partial webhook configuration. Merges with the existing config — fields you omit are preserved.
URI users are redirected to after a successful verification when no
redirect_uri was supplied at session start.URI users are redirected to after a failed or cancelled verification when no
redirect_uri was supplied at session start.Response
Returns the updated App object.Updatable fields:
name, logo, redirectUris, webhookConfig, defaultSuccessRedirectUri, defaultFailureRedirectUri. Immutable fields (clientId, clientSecret) are silently ignored if included in the request body. To rotate the client secret use Rotate Client Secret.
