Return all the transactions for a site.

GET /ext/{siteid}/api/v1/payments/transactions

Accepts the format ?page=1&per_page=10&search=&fromdate=&todate=date should be in DD-MM-YYYY format

Responses

GET /ext/{siteid}/api/v1/payments/transactions
curl \
 -X GET https://api.spotipo.com/ext/{siteid}/api/v1/payments/transactions \
 -H "Authentication-Token: $API_KEY"
Response example (200)
{
  "metadata": {
    "page": 42,
    "per_page": 42,
    "total_count": 42,
    "page_count": 42,
    "links": []
  },
  "items": [
    {
      "id": 42,
      "starttime": {},
      "endtime": {},
      "status": {},
      "comments": "string",
      "amount": "string",
      "email": "string",
      "name": {},
      "num_devices": 42
    }
  ]
}