Find transactions
Search a transaction list based on criteria. Some criteria may be limited for technical reasons. Please refer to the documentation.
Query Parameters
- team_uuid uuid required
The team UUID
- page_index integer required
The page index
- page_size integer required
The page size. The maximum allowed value is 100
- begin_date string required
This begin date will be used to limit the transactions that should be returned by the API. Only transactions with a timestamp equal or superior to this begin date will be taken into account
- end_date string required
This end date will be used to limit the transactions that should be returned by the API. Only transactions with a timestamp equal or inferior to this end date will be taken into account
Header Parameters
- Authorization string requiredExample: Bearer <TOKEN>
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- uuid uuid
Transaction identifier in UUID v4 format created by Tipsi
- tips integer
Amount of the tips (An amount of money in the smallest sub-division of the currency, e.g. 12.60 EUR would be represented as 1260)
- user_uuid uuid
User identifier related to the tips in UUID v4 format (Optional if you're in COLLECTIVE team)
- terminal_name string
The terminal name, this can be useful if you want to identify your equipment
- team_uuid uuid
Team identifier in UUID v4 format related to the tips
- correlation_uuid uuid
The correlation identifier in UUID v4 format created by your system which allows you to insure integrity/unicity of the tips
- ]
[
{
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"tips": 1200,
"user_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"terminal_name": "PAXA920-TEST-001",
"team_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"correlation_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
The query is incorrect
Not Authorized