api/v1/customer/swag-shop/purchases

POST

/api/v1/customer/swag-shop/purchases

This API method will return the purchases made by the logged in customer.

Request Parameters

Parameter

Value / Type

Required

min_amount

INTEGER

false

max_amount

INTEGER

false

store_list

ARRAY

false

per_page

INTEGER

false

page

INTEGER

false

Sample Response

{
  "status": true,
  "items": [
    {
      "id": "LZWBJx0PmYkEwjGdr2vO",
      "customer_id": "bZ6xBGP2mdPm3R8VX17L",
      "product_id": "bZ6xBGP2mdPm3R8VX17L",
      "qty_sold": 1,
      "status": 1,
      "total_amount": "1200.00",
      "item_amount": "1200.00",
      "shipping_selection": 1,
      "tracking_number": null,
      "shipping_location_id": "R7AMWPvlzbLeyGNLYBdb",
      "created_at": "2018-09-24 14:25:17",
      "updated_at": "2018-09-27 11:31:37",
      "review_count": 1,
      "avg_rating": "35.000000",
      "product": {
        "id": "bZ6xBGP2mdPm3R8VX17L",
        "name": "Swag T-Shirt",
        "point_value": "20000.00",
        "quantity": 0,
        "upc": "456",
        "ship_type": 1,
        "store_id": "l6yYk1WOeo7e2b78dD4j",
        "store_name": "Jane's Shop",
        "main_image": "http:\/\/controlcenter.ftx\/swag-item\/images\/bZ6xBGP2mdPm3R8VX17L",
        "rating": 35,
        "review_count": 1
      },
      "details": {
        "id": "bZ6xBGP2mdPm3R8VX17L",
        "upc": "2",
        "quantity": 20,
        "pairings": [
          {
            "attribute": "Shirt Size",
            "value": "Small"
          },
          {
            "attribute": "Color",
            "value": "Blue"
          }
        ]
      },
      "shipping_address": {
        "id": "LZWBJx0PmYkEwjGdr2vO",
        "contact_name": "Contact Name",
        "address_line_1": "Rock Drive",
        "address_line_2": "",
        "city": "Parksville",
        "state": "MN",
        "zip": 12775,
        "phone": "111-111-1111"
      },
      "shipping_location": {
        "id": "R7AMWPvlzbLeyGNLYBdb",
        "store_number": 3,
        "address": "703 River Drive",
        "address_line_2": null,
        "city": "Whiskerville",
        "state": "NY",
        "zip": "11111"
      },
      "shipping_provider": "N\/A",
      "order_status": "Purchased"
    }
  ]
}