Authorization: Bearer ********************
{
"quotationDate" : "<datetime>",//วันที่สร้างใบเสนอราคา
"staffCode" : "<string>",//รหัสพนักงานขาย
"quotationNo" : "<string>",//รหัสใบเสนอราคา
"customerCode" : "<string>", ///รหัสลูกค้า
"quotationStatus" :2,//สถานะใบเสนอราคา <integer>
"take" : 5,//จำนวนรายการที่อยากแสดง required **จำเป็นต้องใส่<decimal>
"skip" : 0, //จำนวนรายการที่อยากข้าม <decimal>
"createdByStaffCode": "<string>" //รหัสพนักงานที่สร้างใบ
}
curl --location --request POST 'https://api.gofive.co.th/v1/quotation/enquiry' \
--header 'Ocp-Apim-Subscription-Key: <Your Subscription-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"quotationDate" : "<datetime>",//วันที่สร้างใบเสนอราคา
"staffCode" : "<string>",//รหัสพนักงานขาย
"quotationNo" : "<string>",//รหัสใบเสนอราคา
"customerCode" : "<string>", ///รหัสลูกค้า
"quotationStatus" :2,//สถานะใบเสนอราคา <integer>
"take" : 5,//จำนวนรายการที่อยากแสดง required **จำเป็นต้องใส่<decimal>
"skip" : 0, //จำนวนรายการที่อยากข้าม <decimal>
"createdByStaffCode": "<string>" //รหัสพนักงานที่สร้างใบ
}'
{
"status": {
"code": "1000",
"description": "Success"
},
"data": [
{
"quotationSubject": "Bff test create quotation",
"quotationNo": "DRAFT2212000100",
"quotationDate": "2022-12-16T00:00:00+0700",
"quotationValidUntil": "2023-12-16T00:00:00+0700",
"customerCode": "daisy",
"recipientName": "Mook",
"recipientAddress": "Chanthaburi",
"quotationDetails": [
{
"productCode": "ROG001",
"productName": "ROG Phone 6 Pro [Default]",
"price": 5000,
"qty": 6,
"productDescription": "Good product",
"discountValue": 1,
"discountType": true,
"vatTaxValue": 3,
"whtTaxValue": 1,
"totalPrice": 29700
}
],
"currencyCode": "THB",
"vatCalculation": true,
"discountName": "just discount test",
"discountType": true,
"discountValue": 7,
"paymentTerm": "1 month test",
"remark": "Remember this for test",
"quotationNote": "test 13dec2022",
"staffCode": "Admin01",
"quotationStatus": 1,
"subTotal": 29700,
"subTotalWithDiscount": 27621,
"totalVat": 828.63,
"grandTotal": 28449.63
}
]
}