- Introduction
- Activity
- Authentication API
- Customer
- Case
- Deal
- Employee
- Expense
- Product
- Create Or Update Products
- Get a Product Ticket
- Get Products With Take & Status
- Get a Product by ProductCode
- Get Product Groups
- Get Product Properties
- Get Products By Filter
- Verify Serial Number
- /v3/Products/serials/status
- Create or Update Codeguard Products
- Update Product Stock
- /v1/products/units
- /v1/products/units Copy
- Quotation
- SalesOrder
- Webhooks
- Task
- Setting
Create Update Quotation
POST
https://api.gofive.co.th/v2/quotation
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Content-Type
string
required
Example:
application/json
Ocp-Apim-Subscription-Key
string
required
Example:
<Your subscription-key>
Body Params application/json
quotationSubject
string
required
quotationDate
string
required
quotationValidUntil
string
required
quotationStatus
integer
required
1 = ร่าง
2= รออนุมัติ
3 = รอส่ง
4 = ส่งแล้ว
5 = เสร็จสิ้น
6 = ปฏิเสธ
7 = ยกเลิก
customerCode
string
required
staffCode
string
required
quotationNo
string | null
optional
referenceNo
string | null
optional
vatCalculation
boolean
required
quotationDetails
array [object {10}]
required
productCode
string
required
productName
string | null
optional
price
number | null
optional
qty
number
required
productUnitName
string | null
optional
productDescription
string | null
optional
discountType
boolean | null
optional
True คือคิดเป็น %,
False คิดเป็นบาท
discountValue
number | null
optional
vatTaxValue
number | null
optional
whTaxValue
number | null
optional
discountType
boolean | null
optional
True คือคิดเป็น %,
False คิดเป็นบาท
discountValue
number | null
optional
headerTemplateId
integer | null
optional
currencyCode
string | null
optional
remark
string | null
optional
discountName
string | null
optional
paymentTerm
string | null
optional
quotationNote
string | null
optional
contactName
string | null
optional
recipientName
string | null
optional
recipientAddress
string | null
optional
Example
{
"quotationSubject":"<string> ",//ชื่อหัวข้อใบเสนอราคา required **จำเป็นต้องใส่มา
"ReferenceNo": "<string>",//เลขอ้างอิง
"quotationNo":"<string>",//รหัสใบเสนอราคา required กรณีแก้ไข ถ้าสร้างไม่ใส่ ต้องเป็นรหัสใบเสนอราคาที่อยู่ในบริษัท
"quotationDate": "<datetime>",//วันที่สร้างใบเสนอราคา required **จำเป็นต้องใส่มา
"quotationValidUntil": "<datetime>",//วันที่สิ้นสุดใบเสนอราคา required **จำเป็นต้องใส่มา
"customerCode": "<string>",//รหัสลูกค้า required **จำเป็นต้องใส่มา
"contactName": "<string>",//ชื่อผู้ติดต่อ optional
"recipientName": "<string>",//ชื่อผู้รับ optional
"recipientAddress": "<string>",//ที่อยู่ผู้รับ optional
"quotationDetails": [
//รายการสินค้า
{
"productCode": "<string>",//รหัสสินค้า required **จำเป็นต้องใส่มา ต้องเป็นรหัสที่มีอยู่ในบริษัทและactive
"productName": "<string>",//ชื่อสินค้า optional
"price":0.0,//ราคาาำหนดต่อหน่วย optional <decimal>
"qty":0.0,//จำนวนสินค้า required **จำเป็นต้องใส่มา <decimal>
"productUnitName": "<string>",//หน่วยสินค้า optional
"productDescription": "<string>",//รายละเอียดสินค้า optional
"discountValue": 0.0,//ส่วนลดสินค้าถ้าหากประเภทสินค้าเป็น%คิดเป็น% ถ้าไม่ใช่คิดเป็นบาท optional ห้ามใส่เกิน100%หรือมากกว่ายอดรวมสินค้า <decimal>
"vatTaxValue": 0.0,//ภาษีมูลค่าเพิ่ม required ห้ามใส่เกิน1000 <decimal>
"discountType":false,//ประเภทส่วนลด ถ้าtrueเป็น% ไม่ใช่เป็นบาท optional <bool>
"whtTaxValue":0.0//ภาษี ณ ที่จ่าย ต้องเป็นภาษี ณ ที่จ่ายที่มีอยู่ในบริษัทและactiveอยู่ <decimal>
}
],
"currencyCode": "<string>",// สกุลเงิน เช่น "THB" , "USD" [ถ้าไม่ส่ง หรือ null ระบบจะหยิบ System Currency ของ Company นั้นๆให้] optional
"vatCalculation": true,//การคำนวณภาษีมูลค่าเพิ่ม required **จำเป็นต้องใส่มา <bool>
"discountName": "<string>",//ชื่อส่วนลด optional
"discountType": false,//ประเภทส่วนลด ถ้าtrueเป็น% ไม่ใช่เป็นบาท optional <bool>
"discountValue": 0.0,//ส่วนลดสินค้าถ้าหากประเภทสินค้าเป็น%คิดเป็น% ถ้าไม่ใช่คิดเป็นบาท optional ห้ามใส่เกิน100%หรือมากกว่ายอดรวมสินค้า <decimal>
"paymentTerm": "<string>",//เงื่อนไขการชำระเงิน optional
"remark": "<string>",//หมายเหตุใบเสนอราคา optional
"quotationNote": "<string>",//รายละเอียดเพิ่มเติม optional
"staffCode": "<string>",//รหัสพนักงาน required **จำเป็นต้องใส่มา ต้องเป็นรหัสที่มีอยู่ในบริษัทและactive
"quotationStatus":1
,//สถานะใบเสนอราคา required **จำเป็นต้องใส่มา สามารถสร้างสถานะเป็น 1 darf ใบร่าง, 2 waiting approve รอให้อนุมัติ, 3 pending sent รอส่ง
"headerTemplate":1
//หัวกระดาษในpdf <integer>
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gofive.co.th/v2/quotation' \
--header 'Ocp-Apim-Subscription-Key: <Your subscription-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"quotationSubject":"<string> ",//ชื่อหัวข้อใบเสนอราคา required **จำเป็นต้องใส่มา
"ReferenceNo": "<string>",//เลขอ้างอิง
"quotationNo":"<string>",//รหัสใบเสนอราคา required กรณีแก้ไข ถ้าสร้างไม่ใส่ ต้องเป็นรหัสใบเสนอราคาที่อยู่ในบริษัท
"quotationDate": "<datetime>",//วันที่สร้างใบเสนอราคา required **จำเป็นต้องใส่มา
"quotationValidUntil": "<datetime>",//วันที่สิ้นสุดใบเสนอราคา required **จำเป็นต้องใส่มา
"customerCode": "<string>",//รหัสลูกค้า required **จำเป็นต้องใส่มา
"contactName": "<string>",//ชื่อผู้ติดต่อ optional
"recipientName": "<string>",//ชื่อผู้รับ optional
"recipientAddress": "<string>",//ที่อยู่ผู้รับ optional
"quotationDetails": [
//รายการสินค้า
{
"productCode": "<string>",//รหัสสินค้า required **จำเป็นต้องใส่มา ต้องเป็นรหัสที่มีอยู่ในบริษัทและactive
"productName": "<string>",//ชื่อสินค้า optional
"price":0.0,//ราคาาำหนดต่อหน่วย optional <decimal>
"qty":0.0,//จำนวนสินค้า required **จำเป็นต้องใส่มา <decimal>
"productUnitName": "<string>",//หน่วยสินค้า optional
"productDescription": "<string>",//รายละเอียดสินค้า optional
"discountValue": 0.0,//ส่วนลดสินค้าถ้าหากประเภทสินค้าเป็น%คิดเป็น% ถ้าไม่ใช่คิดเป็นบาท optional ห้ามใส่เกิน100%หรือมากกว่ายอดรวมสินค้า <decimal>
"vatTaxValue": 0.0,//ภาษีมูลค่าเพิ่ม required ห้ามใส่เกิน1000 <decimal>
"discountType":false,//ประเภทส่วนลด ถ้าtrueเป็น% ไม่ใช่เป็นบาท optional <bool>
"whtTaxValue":0.0//ภาษี ณ ที่จ่าย ต้องเป็นภาษี ณ ที่จ่ายที่มีอยู่ในบริษัทและactiveอยู่ <decimal>
}
],
"currencyCode": "<string>",// สกุลเงิน เช่น "THB" , "USD" [ถ้าไม่ส่ง หรือ null ระบบจะหยิบ System Currency ของ Company นั้นๆให้] optional
"vatCalculation": true,//การคำนวณภาษีมูลค่าเพิ่ม required **จำเป็นต้องใส่มา <bool>
"discountName": "<string>",//ชื่อส่วนลด optional
"discountType": false,//ประเภทส่วนลด ถ้าtrueเป็น% ไม่ใช่เป็นบาท optional <bool>
"discountValue": 0.0,//ส่วนลดสินค้าถ้าหากประเภทสินค้าเป็น%คิดเป็น% ถ้าไม่ใช่คิดเป็นบาท optional ห้ามใส่เกิน100%หรือมากกว่ายอดรวมสินค้า <decimal>
"paymentTerm": "<string>",//เงื่อนไขการชำระเงิน optional
"remark": "<string>",//หมายเหตุใบเสนอราคา optional
"quotationNote": "<string>",//รายละเอียดเพิ่มเติม optional
"staffCode": "<string>",//รหัสพนักงาน required **จำเป็นต้องใส่มา ต้องเป็นรหัสที่มีอยู่ในบริษัทและactive
"quotationStatus":1
,//สถานะใบเสนอราคา required **จำเป็นต้องใส่มา สามารถสร้างสถานะเป็น 1 darf ใบร่าง, 2 waiting approve รอให้อนุมัติ, 3 pending sent รอส่ง
"headerTemplate":1
//หัวกระดาษในpdf <integer>
}'
Responses
🟢200Created
application/json
Body
status
object
required
code
string
required
สถานะของ Business Code ถ้า
Success = 1000
Error 1 ตัว = 4001
Error มากกว่า 1 ตัว = 4002
หรือเป็น Subcode ที่ต้องการจะแสดงเพื่อสื่อความหมายของ Error โดย subcode จะเป็นตัวเดียวกับ business error code หรือไม่ก็ได้ เพื่อความสะดวกในการแสดงผล
description
string
required
data
array [object {23}]
required
quotationSubject
string
required
quotationDate
string
required
quotationValidUntil
string
required
quotationStatus
integer
required
1 = ร่าง
2= รออนุมัติ
3 = รอส่ง
4 = ส่งแล้ว
5 = เสร็จสิ้น
6 = ปฏิเสธ
7 = ยกเลิก
staffCode
string
required
customerCode
string
required
vatCalculation
boolean
required
quotationDetails
array [object {11}]
required
currencyCode
string
required
discountName
string | null
optional
discountType
boolean | null
optional
True คือคิดเป็น %,
False คิดเป็นบาท
discountValue
number | null
optional
quotationNote
string | null
optional
paymentTerm
string | null
optional
contactName
string | null
optional
recipientName
string | null
optional
recipientAddress
string | null
optional
subTotal
number
required
subTotalWithDiscount
number
required
totalVat
number
required
grandTotal
number
required
remark
string | null
optional
headerTemplateId
integer | null
optional
Example
{
"status": {
"code": "1000",
"description": "Success"
},
"data": [
{
"quotationSubject": "string",
"quotationNo": "string",
"quotationDate": "2022-12-16T00:00:00+0700",
"quotationValidUntil": "2023-12-16T00:00:00+0700",
"customerCode": "string",
"contactName": "string",
"recipientName": "string",
"recipientAddress": "string",
"quotationDetails": [
{
"productCode": "string",
"productName": "string",
"price": 10,
"qty": 6,
"productUnitName": "string",
"productDescription": "string",
"discountValue": 1,
"vatTaxValue": 3,
"totalPrice": 5
}
],
"currencyCode": "THB",
"vatCalculation": true,
"discountName": "string",
"discountType": false,
"discountValue": 7,
"paymentTerm": "string",
"remark": "string",
"quotationNote": "string",
"staffCode": "string",
"quotationStatus": 3,
"subTotal": 59,
"subTotalWithDiscount": 52,
"totalVat": 1.56,
"grandTotal": 53.56
}
]
}
🟢200Updated
🟠400Bad Request
🟠401Unauthorized
Modified at 2023-02-08 06:40:48