session
and session_token
cookie will be returned. Pass these cookies in the request header for any subsequent API requests for actions using this current user session. User session tokens expire after 24 hours in which a Login request will have to be resubmitted to retrieve a new session.curl --location --request POST 'https://fleet.roscolive.com/api/v1.0/login' \
--form 'email=""' \
--form 'password=""'
{
"meta": {
"code": 200
},
"response": {
"roles": [
"fleet_manager"
],
"user": "Kianna_Cruickshank@hotmail.com",
"last_login": "1996-03-04 11:08:13",
"user_id": 7,
"session_expire": "2047-09-23 21:13:07",
"session_token": "afced4feb4dc4c329abec784b2495243"
},
"result": "OK"
}