api/v1/customer/swag-shop/purchases/{id}/get

GET

/api/v1/customer/swag-shop/purchases/{id}/get

This API method will return the a single purchase record.

Request Parameters

None Required

Sample Response

{
  "status": true,
  "item": {
    "id": "bZ6xBGP2mdPm3R8VX17L",
    "customer_id": "LZWBJx0PmYkEwjGdr2vO",
    "product_id": "LZWBJx0PmYkEwjGdr2vO",
    "qty_sold": 2,
    "status": 1,
    "total_amount": "20400.00",
    "item_amount": "10200.00",
    "shipping_selection": 1,
    "tracking_number": null,
    "shipping_location_id": "R7AMWPvlzbLeyGNLYBdb",
    "is_gift": 0,
    "created_at": "2018-12-13 03:39:23",
    "updated_at": "2018-12-13 03:39:23",
    "review_count": 0,
    "avg_rating": "0.000000",
    "product": {
      "id": "nK8oWGj0zxqELP1A53ak",
      "name": "Swag T-Shirt",
      "point_value": "1200.00",
      "quantity": 33,
      "upc": null,
      "ship_type": 1,
      "store_id": "l6yYk1WOeo7e2b78dD4j",
      "store_name": "Bobs Depot",
      "main_image": "http:\/\/customer.loyalty.ftx\/swag-item\/images\/dnbPV7yRzv3EWaX1GKZv",
      "rating": 60,
      "review_count": 2
    },
    "details": {
      "id": "LZWBJx0PmYkEwjGdr2vO",
      "upc": "1",
      "quantity": 196,
      "pairings": [
        {
          "attribute": "Shirt SIze",
          "value": "Value A"
        }
      ]
    },
    "shipping_location": {
       "id": "R7AMWPvlzbLeyGNLYBdb",
       "store_number": 3,
       "address": "703 River Drive",
       "address_line_2": null,
       "city": "Whiskerville",
       "state": "NY",
       "zip": "11111"
    },
  }
}
{
  "status": false,
  "message": "This purchase is not on your account"
}
{
  "status": false,
  "message": "This purchase does not exist"
}