Patch client by ID

Patch an existing OAuth 2.0 client by client ID. Updating an OAuth2 client uses a [JSON patch](https://datatracker.ietf.org/doc/html/rfc6902) representation of the desired changes. To learn more, read [Updates](https://launchdarkly.com/docs/api#updates). Only `name`, `description`, and `redirectUri` may be patched.

Path parameters

clientIdstringRequired
The client ID

Headers

AuthorizationstringRequired

Request

This endpoint expects a list of objects.
opstringRequired
The type of operation to perform
pathstringRequired
A JSON Pointer string specifying the part of the document to operate on
valueanyOptional

Response

OAuth 2.0 client response
namestring
Client name
_accountIdstring
The account ID the client is registered under
_clientIdstring
The client's unique ID
redirectUristring
The client's redirect URI
_creationDatelong
Timestamp of client creation date
descriptionstring or null
Client description
_clientSecretstring or null
The client secret. This will only be shown upon creation.

Errors