Request an access token
OAuth endpoint to exchange your access key ID and access key secret for an access token.
Body
application/json
Responses
- application/json
- application/json
Request Example for post/connect/token
curl 'https://{prefix}.access.checkout.com/connect/token' \
--request POST \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=ack_clckqmmnyfiupexjew7shh5ahe' \
--data-urlencode 'client_secret=Pmg36sDWQ9WxtPR3'
{
"access_token": "2YotnFZFEjr1zCsicMWpAA",
"token_type": "example",
"expires_in": 3600
}