Exchanges authorization codes for access tokens and refresh tokens. you can provide client_id and client_secret in the body or using basic auth.
Request
Body Params application/x-www-form-urlencoded
Request Code Samples
curl --location --request POST 'https://api.withdipp.com/oauth/v1/token' \
--data-urlencode 'grant_type=' \
--data-urlencode 'code=' \
--data-urlencode 'client_id=' \
--data-urlencode 'client_secret=' \
--data-urlencode 'redirect_uri=' \
--data-urlencode 'code_verifier=' \
--data-urlencode 'refresh_token='
Responses
{
"access_token": "string",
"token_type": "Bearer",
"expires_in": 0,
"refresh_token": "string",
"id_token": "string",
"scope": "string"
}
Modified at 2025-08-18 07:53:31