List of Orders

Method:   GET
JSON:     https://effectivetours.com/api/orders/list.json?key=<API_KEY>

GET parameters:

email— filter by client email
status— filter by status

Order statuses

A— Active
Y— Accepted
N— Rejected

JSON Response

[
  {
    "balance": "2453.30",
    "client": {
      "email": "smith@effectivetours.com",
      "id": 179904,
      "name": "John Smith"
    },
    "id": 64,
    "invoice": "EFFT-64",
    "prepayment": "0.00",
    "price": "2453.30",
    "status": "A"
  },
  {
    "balance": "55.00",
    "client": {
      "email": "rebeka@effectivetours.com",
      "id": 175173,
      "name": "Rebeka Smith"
    },
    "id": 63,
    "invoice": "EFFT-63",
    "prepayment": "0.00",
    "price": "55.00",
    "status": "Y"
  },
  ...
]