POST
/
institutions
/
oauth
/
token
OAuth Token
curl --request POST \
  --url https://sandbox-api.cardcore.cloud/institutions/oauth/token \
  --header 'Content-Type: application/json' \
  --data '
{
  "grant_type": "client_credentials",
  "institutionId": "{{institutionId}}",
  "client_assertion_type": "urn:ietf:params:oauth:client-assertion-type:jwt-bearer",
  "client_assertion": "paste-client-assertion-jwt-here"
}
'
{}

Body

application/json
grant_type
string
required
institutionId
string
required
client_assertion_type
string
required
client_assertion
string
required

Response

201 - application/json

OAuth Token completed successfully.

The response is of type object.