cURL
curl --request POST \ --url https://api.artemis.cynopsis.co/api/authentication/token \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "clientId": "<string>", "clientSecret": "<string>" }'
{ "access_token": "<string>", "expires_in": "<string>", "jti": "<string>", "message": "<string>", "refresh_token": "<string>", "scope": "<string>", "sub": "<string>", "token_type": "<string>", "user_id": "<string>" }
The access token received from the authorization server in the OAuth 2.0 flow.
dto
OK