POST
/
v1
/
authentication
curl --request POST \
  --url https://platform.realto.io/api/v1/authentication \
  --header 'Content-Type: application/json' \
  --data '{
  "clientId": "<string>",
  "clientSecret": "<string>"
}'
{
  "access_token": "<string>",
  "expires_in": 123,
  "token_type": "<string>"
}

Body

The client id and client secret, the identifiers of the Principal that is making the request. These identifiers are created when registering on the Realto Platform. [Contact](https://realto.io/contact/) us to get your client credentials if you haven't done so already.

A request for a token

clientId
string | null

The client id

clientSecret
string | null

The client secret

Response

200
application/json
OK

A token

access_token
string | null

The access token

expires_in
integer

The number of seconds before the token expires

token_type
string | null

The type of the token