PATCH
/
v2
/
idp
/
clients
/
{id}
Update an OAuth client application
curl --request PATCH \
  --url https://coreapi-dev.us.bcpapers.ca/v2/idp/clients/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "grant_types": [
    "<string>"
  ],
  "name": "<string>",
  "redirect_uris": [
    "<string>"
  ],
  "scopes": [
    "<string>"
  ]
}
'
{}

Authorizations

Authorization
string
header
required

Paste the JWT token only (no "Bearer " prefix needed — the UI adds it automatically).

Path Parameters

id
string
required

Client UUID

Body

application/json

Client update payload

grant_types
string[]
name
string
redirect_uris
string[]
scopes
string[]

Response

OK

The response is of type object.