PUT
/
institutions
/
oauth
/
{institutionId}
Update OAuth Application
curl --request PUT \
  --url https://sandbox-api.cardcore.cloud/institutions/oauth/{institutionId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Updated Banking App",
  "description": "Updated description",
  "websiteUrl": "https://myapp.com",
  "scopes": [
    "READ"
  ]
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

institutionId
string
required

Path parameter: institutionId.

Body

application/json
name
string
required
description
string
required
websiteUrl
string<uri>
required
scopes
string[]
required

Response

200 - application/json

Update OAuth Application completed successfully.

The response is of type object.