Skip to main content

Create Buy Request

Creates a buy request for a specific product/device. The request is added to the cart and can be viewed in the cart section of the platform.

POST   /v1/buy-requests
curl -X POST "https://api.ezewholesale.com/api/v1/buy-requests" \
-H "x-api-key:your-api-key" \
-H 'Content-Type: application/json' \
-d '{"name":"iPhone 15 Plus","brand":"Apple","category":"Smartphones","price":150,"quantity":5,"properties":{"color":"Black","grade":"B2","carrier":"AT&T","storage":"128GB","countrySpec":"United States"}}'


RESPONSE
{
  "status": 201,
  "description": "Buy Request created!",
  "data": {
    "id": "8103c97b-4b3f-48be-b274-6d5490d5de04",
    "name": "iPhone 15 Plus",
    "category": "Smartphones",
    "brand": "Apple",
    "sku": null,
    "price": 150,
    "status": "open",
    "createdAt": "2024-06-24T13:58:28.275Z",
    "updatedAt": "2024-06-24T13:58:28.275Z",
    "quantity": 5,
    "properties": {
      "color": "Black",
      "grade": "B2",
      "carrier": "AT&T",
      "storage": "128GB",
      "countrySpec": "United States"
    },
    "buyer": "db3e7e12-1181-4a1f-8b4c-4f03d44ae6c4",
    "minQuantity": 5,
    "isBulk": false,
    "currency": "USD",
    "origin": null,
    "isCustom": false,
    "invoiceId": null,
    "actualPrice": 150,
    "matched": true,
    "matchedTarget": [
      {
        "id": "5416c4d4-fd4b-4f26-b998-b95f4cacbc5e",
        "createdAt": "2024-06-12T07:14:11.533Z",
        "updatedAt": "2024-06-12T07:14:46.854Z",
        "name": "iPhone 15 Plus",
        "category": "Smartphones",
        "brand": "Apple",
        "sku": null,
        "quantity": 51,
        "price": 24,
        "status": "open",
        "properties": {
          "color": "Black",
          "grade": "B2",
          "carrier": "AT&T",
          "storage": "128GB",
          "countrySpec": "United States"
        },
        "isBulk": false,
        "counterOffers": null,
        "target": null,
        "margin": "4.00",
        "origin": null,
        "expiryDate": null,
        "currency": "NGN",
        "deal": null,
        "isCustom": false,
        "seller": "2ff08167-ba14-44a5-9776-02e296c34560",
        "minQuantity": 1,
        "originalQuantity": 5,
        "actualPrice": 20,
        "upc": null,
        "mpn": null,
        "description": null,
        "specs": null,
        "source": "DIRECT",
        "imgUrl": null,
        "imgUrls": null,
        "sourceMetadata": false
      },
      {
        "id": "8969cc22-24ce-4674-8503-baeac2677045",
        "createdAt": "2024-06-12T06:27:16.635Z",
        "updatedAt": "2024-06-12T07:08:17.960Z",
        "name": "iPhone 15 Plus",
        "category": "Smartphones",
        "brand": "Apple",
        "sku": null,
        "quantity": 20,
        "price": 24,
        "status": "open",
        "properties": {
          "color": "Black",
          "grade": "B2",
          "carrier": "AT&T",
          "storage": "128GB",
          "countrySpec": "United States"
        },
        "isBulk": false,
        "counterOffers": null,
        "target": null,
        "margin": "4.00",
        "origin": null,
        "expiryDate": null,
        "currency": "NGN",
        "deal": null,
        "isCustom": false,
        "seller": "2ff08167-ba14-44a5-9776-02e296c34560",
        "minQuantity": 1,
        "originalQuantity": 5,
        "actualPrice": 20,
        "upc": null,
        "mpn": null,
        "description": null,
        "specs": null,
        "source": "DIRECT",
        "imgUrl": null,
        "imgUrls": null,
        "sourceMetadata": false
      }
    ]
  }
}