Authentication
OAuth layer for obtaining access tokens
Getting Access Token
curl --location --request POST 'https://iam.demo.medeintegra.dev/oauth/token' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "<<client_id>>",
"client_secret": "<<client_secret>>",
"audience": "https://play.medeintegra.dev",
"grant_type": "client_credentials"
}'{
"access_token": "<<ACCESS_TOKEN>>",
"expires_in": 86400,
"token_type": "Bearer"
}Obtain Access Token
Request Body
Name
Type
Description
Last updated