Authentication

All API calls require valid authentication (part from /auth).

To provide authentication to your API call, you need to add an Authorization header with valid credentials.

Bearer

To authenticate using the bearer method, add an Authorization header with the contents of the header being Bearer {token} where {token} is your API token.

Authorization: Bearer {token}

Generate an API token

If you want to retrieve a list of reciepts, use this POST request:

POST https://api.tirix.io/auth

Parameters

KeyMandatoryTypeDescription
emailYesStringAccount email
passwordYesStringAccount password
expiresOptionalIntegerTime until token should expire, in seconds, maximum 24 hours.
Last Updated: