Auth
Log in
Plan: All plans.
Exchange user credentials for an auth token. The token is tied to one user and one account. Treat it as expirable: on a later 401, log in again and retry once. Send account_id + authToken on every other request.
post/login
Request body
Example request
{
"user": "jane@example.com"
}Response
Authenticated.
Example response
{
"authToken": "86D05F9EF7B74D8BA9C9D78897216850",
"accountID": "95242D38183340B29A86829AEF5C2400"
}