Quatrix APIs v1.0
Space shortcuts
Quatrix APIs v1.0 QA1

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This API call is used to log in. There are more than one method to login using this API call.

If user cannot log in to the account, 'account_id' equals null. And the user can only execute "user context" API actions.

Resource URL

/api/1.0/session/login

Resource Information

 

Response formatsJSON
Response code200
Requires authentication?No
Rate limited?Yes
Requests / 15-min window (user auth)15
HTTP MethodGET
Response code200

 

HTTP Request format

Code Block
GET /session/login
Authorization: <method> <data>
Host: <account_hostname>

Example Result

Headers

Code Block
HTTP/1.1 200 OK
X-Auth-Token: <token>
 

Body

Code Block
languagejs
{
    "account_id": <uuid>
}
Quatrix APIs v1.0 QA1