Skip to main content
POST
/
api
/
authentication
/
token
getAccessToken
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>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.cynopsis.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

dto

clientId
string
required
clientSecret
string
required

Response

OK

access_token
string
expires_in
string
jti
string
message
string
refresh_token
string
scope
string
sub
string
token_type
string
user_id
string