Action
Using the code returned with the redirect URI, you must call this endpoint to get an access token for the payment submission call.
Method | POST |
Endpoint | https://api.nedbank.co.za/apimarket/sandbox/nboauth/oauth20/token |
Using the code returned with the redirect URI, you must call this endpoint to get an access token for the payment submission call.
Method | POST |
Endpoint | https://api.nedbank.co.za/apimarket/sandbox/nboauth/oauth20/token |
Header | Value | Description |
---|---|---|
Accept | application/json | The data type the endpoint will accept. |
Content-Type | application/x-www-form-urlencoded | The data type being sent to the endpoint. |
Field | Value | Description |
---|---|---|
client_id | <YOUR CLIENT ID> | The client id you received when creating the app in the portal. |
client_secret | <YOUR CLIENT SECRET> | The client secret you received when creating the app in the portal. |
redirect_uri | <REDIRECT URI> | Replace with the redirect uri you used in the previous call. |
code | <CODE> | Replace with the code you received from the previous call. |
grant_type | authorization_code | the grant type to be used |
{
"token_type": "bearer",
"access_token": "AFYLGI2gs30aCU4rnalg",
"expires_in": 3599,
"scope": "openid payments",
"refresh_token": "EkvHpaauYTHC0LetggzFvVZ8Tl5Q6EK7eeBPEMlf"
}