POST /connect/token endpoint to retrieve one using your client_id and client_secret.| Environment | URL |
|---|---|
| UAT | https://idsuat.walletgate.iO |
| UAT | https://stsapiuat.walletgate.io |
'https://idsuat.walletgate.io', and all API operations will go through https://stsapiuat.walletgate.io.curl --location --request POST '/connect/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=your_client_id' \
--data-urlencode 'client_secret=your_client_secret' \
--data-urlencode 'scope=sts_business_api'{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer",
"expires_in": 3600,
"scope": "sts_business_api"
}