Product Quotation

Admin Product Quotation

To Update Product Quotation Availability

PUT/admin-quotation/update-quotation-available/{id}
Path parameters
id*integer (int32)
Header parameters
Body
quotationAvailableinteger (int32)
Response

Success Response

Body
statusinteger
messagestring
dataobject
Request
const response = await fetch('/admin-quotation/update-quotation-available/{id}', {
    method: 'PUT',
    headers: {
      "Content-Type": "application/x-www-form-urlencoded"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "message": "quotation status updated successfully.",
  "data": {
    "createdDate": "2024-04-27T23:28:25.890Z",
    "modifiedDate": "2024-04-27T23:28:25.890Z",
    "sku": "text",
    "upc": "text",
    "hsn": "text",
    "location": "text",
    "image": "text",
    "imagePath": "text",
    "serviceCharges": "text",
    "price": "text",
    "dateAvailable": "text",
    "name": "text",
    "description": "text",
    "amount": "text",
    "metaTagTitle": "text",
    "metaTagDescription": "text",
    "metaTagKeyword": "text",
    "keywords": "text",
    "discount": "text",
    "productSlug": "text",
    "width": "text",
    "height": "text",
    "length": "text",
    "weight": "text",
    "attributeKeyword": "text",
    "settedAsCommonOn": "text"
  }
}

Store Product Quotation

Vendor Product Quotation

Last updated