OAuth2 compatible token, get an access token for future requests using refresh token
cURL
curl --request POST \ --url https://api-dev.monyfix.tech/auth/refresh-token \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "refresh_token": "<string>" } '
200
Example
{ "access_token": "<string>", "expires_at": 123, "refresh_token": "<string>", "refresh_token_expires_at": 123, "token_type": "Bearer"}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response