.png)
Get token
ENDPOINTS
post
/v1/token
Header parameters
Collapse
Accept
string
no
institutionId
string
required
Numeric unique id of the financial institution
transactionId
string
required
A unique identifier for this request.
Content-Type
string
required
Request content type
Authorization
string
required
Standard HTTP Basic Authentication based on the 'shared key', and 'secret key', provided during the application registration process.A string composed of `Basic`+ `(space)` + `base64encode(shared_key + ":" + secret_key)`example: Basic ODU4S0pRczVXwGdMRkhUUUh
Body parameters
Collapse
{"grant_type":"string","username":"string","password":"string","scopes":"string","refresh_token":"string"}
Responses
Collapse
200
Success
Response Body
{"access_token":"string","expires_in":"string","token_type":"Bearer","refresh_token":"string","refresh_token_expires_in":"string"}
400
Bad request
Response Body
{"code":"string","message":"string"}
500
Server error
Response Body
{"code":"string","message":"string"}
curl --request POST \
--url https://api.candescent.com/digitalbanking/oauth2/v1/token \
--header 'Accept: SOME_STRING_VALUE' \
--header 'Authorization: SOME_STRING_VALUE' \
--header 'Content-Type: SOME_STRING_VALUE' \
--header 'accept: application/json' \
--header 'content-type: application/x-www-form-urlencoded' \
--header 'institutionId: SOME_STRING_VALUE' \
--header 'transactionId: SOME_STRING_VALUE' \
--data '{"grant_type":"String","username":"String","password":"String","scopes":"String","refresh_token":"String"}'