OAuth2 compatible token, get an access token for future requests using username and password
cURL
curl --request POST \ --url https://api-dev.monyfix.tech/auth/access-token \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "phone": "<string>", "nonce": "<string>" } '
{ "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