Get All Orders October 06 2015

GET a list of all your orders...

/api/v3/orders
/api/v3/orders?page=2

Status can be open or expired. If not specified then all orders (open and expired) will be returned. Example result...

{
  "orders": [
    {
            "created_at": "2021-09-12T12:34:55Z",
            "custom_order_id": "O123",
            "email": "joe@example.com",
            "first_name": "John",
            "id": 123,
            "last_name": "Doe",
            "updated_at": "2021-09-13T10:11:12Z"
    }
  ]
}