Authorization: Bearer ********************curl --location --request POST 'https://api.stg.bidancer.com/auth-service/auth/oauth2/token' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"grant_type": "authorization_code",
"client_id": "string",
"client_secret": "string",
"code": "string",
"code_verifier": "string",
"redirect_uri": "http://example.com",
"refresh_token": "string",
"resource": "string",
"scope": "string"
}'{
"access_token": "string",
"token_type": "Bearer",
"expires_in": 0,
"refresh_token": "string",
"scope": "string",
"id_token": "string"
}