- 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
Convert Quotation To SalesOrder
POST
https://api.gofive.co.th/v1/quotation/{quotationNo}/convert-to-salesorder
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
quotationNo
string
required
Header Params
Content-Type
string
required
Example:
application/json
Ocp-Apim-Subscription-Key
string
required
Example:
<Your Subscriptin-key>
Body Params application/json
QuotationNo
string
required
Example
{"QuotationNo":"<string>" //รหัสใบเสนอราคา required
}
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/v1/quotation//convert-to-salesorder' \
--header 'Ocp-Apim-Subscription-Key: <Your Subscriptin-key>' \
--header 'Content-Type: application/json' \
--data-raw '{"QuotationNo":"<string>" //รหัสใบเสนอราคา required
}'
Responses
🟢200OK
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
object
required
salesOrderSubject
string
required
salesOrderNo
string
required
salesOrderStatus
integer
required
1 = draft
2 = open
3 = completed
4 = rejected
5 = cancelled]
salesOrderDate
string
required
referenceNo
string
required
customerCode
string
required
contactId
integer | null
optional
recipientAddress
string | null
optional
headerTemplateId
integer | null
optional
discountName
string | null
optional
discountValue
number | null
optional
discountType
boolean | null
optional
true = percentage
false = amount]
(*ระบบจะ required เมื่อมีการใส่ discountValue)
paymentTerm
string | null
optional
remark
string | null
optional
staffCode
string
required
salesOrderNote
string | null
optional
salesorderDetails
array [object {11}]
required
currencyCode
string
required
vatCalculation
boolean
required
true = ไม่รวมภาษีมูลค่าเพิ่ม
false = รวมภาษีมูลค่าเพิ่ม]
subTotal
number
required
subTotalWithDiscount
number
required
totalVat
number
required
grandTotal
number
required
recipientName
string | null
optional
Example
{
"status": {
"code": "1000",
"description": "Success"
},
"data": {
"salesOrderSubject": "string",
"salesOrderNo": "string",
"salesOrderStatus": 2,
"salesOrderDate": "2022-12-29T00:00:00+0700",
"referenceNo": "string",
"customerCode": "string",
"contactId": 1,
"recipientName": "string",
"recipientAddress": "string",
"headerTemplateId": 1,
"salesorderDetails": [
{
"productCode": "string",
"productName": "string",
"price": 10,
"qty": 6,
"productUnitName": "ด้าม",
"productDescription": "string",
"discountValue": 1,
"vatTaxValue": 3,
"totalPrice": 59
}
],
"discountName": "string",
"discountValue": 7,
"discountType": false,
"paymentTerm": "string",
"remark": "string",
"staffCode": "string",
"salesOrderNote": "string",
"currencyCode": "string",
"vatCalculation": true,
"subTotal": 59,
"subTotalWithDiscount": 52,
"totalVat": 1.56,
"grandTotal": 53.56
}
}
🟢200Bad Request
🟠401Unauthorized
Modified at 2023-02-08 04:59:06