Skip to main content
POST
/
api
/
v1
/
credentials
/
token
/
oauth
cURL
curl --request POST \
  --url https://saas.pads365.com/rdx/NDS.Services.Credentials/api/v1/credentials/token/oauth \
  --header 'Content-Type: application/json' \
  --data '{
  "TokenEndpointUrl": "<string>",
  "Code": "<string>",
  "ProviderId": "<string>",
  "RedirectUri": "<string>",
  "CodeVerifier": "<string>"
}'
{
  "Succeeded": true,
  "Message": "<string>",
  "Code": "<string>",
  "AccessToken": "<string>",
  "TokenType": "<string>",
  "ExpiresIn": 123,
  "RefreshToken": "<string>",
  "IdToken": "<string>",
  "Scope": "<string>"
}

Body

application/json
TokenEndpointUrl
string
Code
string
ProviderId
string
RedirectUri
string
CodeVerifier
string

Response

200 - application/json
AccessToken
string
TokenType
string
ExpiresIn
integer
RefreshToken
string
IdToken
string
Scope
string
Succeeded
boolean
Message
string | null
Code
string | null