- 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
Get a SalesOrder By SalesOrderNo
GET
https://api.gofive.co.th/v2/salesorder/{salesOrderNo}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
salesOrderNo
string
required
Header Params
Ocp-Apim-Subscription-Key
string
required
Example:
<Your Subscription-Key>
Content-Type
string
required
Example:
application/json
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 GET 'https://api.gofive.co.th/v2/salesorder/' \
--header 'Ocp-Apim-Subscription-Key: <Your Subscription-Key>' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
status
object
required
code
string
required
description
string
required
data
object
required
salesOrderSubject
string
required
customerCode
string
required
customerId
integer
required
salesOrderNo
string
required
salesOrderStatus
integer
required
salesOrderDate
string
required
recipientName
string
required
recipientAddress
string
required
headerTemplateId
integer
required
salesorderDetails
array [object {9}]
required
discountName
string
required
discountValue
integer
required
discountType
boolean
required
paymentTerm
string
required
remark
string
required
staffCode
string
required
salesOrderNote
string
required
vatCalculation
boolean
required
subTotal
integer
required
subTotalWithDiscount
integer
required
grandTotal
integer
required
payment
object
required
privateNote
string
optional
invoiceInfo
object
optional
shippingDocumentUrl
string
optional
trackingNo
string
optional
Example
{
"status": {
"code": "1000",
"description": "Success"
},
"data": {
"salesOrderSubject": "string",
"customerCode": "L000001",
"customerId": 1234,
"salesOrderNo": "string",
"salesOrderStatus": 3,
"salesOrderDate": "2023-01-23T00:00:00+0700",
"recipientName": "string",
"recipientAddress": "string",
"headerTemplateId": 1,
"salesorderDetails": [
{
"productCode": "string",
"productName": "string",
"price": 456,
"qty": 1,
"productDescription": "string",
"discountValue": 0,
"discountType": true,
"totalPrice": 456,
"productUnitName": "string"
}
],
"discountName": "string",
"discountValue": 5,
"discountType": false,
"paymentTerm": "string",
"remark": "string",
"staffCode": "string",
"salesOrderNote": "string",
"vatCalculation": true,
"subTotal": 456,
"subTotalWithDiscount": 451,
"grandTotal": 451,
"payment": {
"valueType": 1,
"periods": [
{
"periodNo": 1,
"value": 10,
"valuePercent": 50,
"isPaid": false
},
{
"periodNo": 2,
"value": 10,
"valuePercent": 50,
"isPaid": false
}
]
},
"privateNote": "string",
"invoiceInfo": {
"id": 2,
"integrationPlatform": 400027,
"integrationBuyerId": "string",
"type": 13001,
"customerName": "string",
"taxId": "string",
"isEtax": false,
"isHeadOffice": true,
"branch": "string",
"branchCode": "string",
"province": "string",
"district": "string",
"subDistrict": "string",
"zipCode": "string",
"phone": "string",
"address": "string"
},
"shippingDocumentUrl": "string",
"trackingNo": "string"
}
}
🟠404Not Found
🟠401Unauthorized
🟠401User authentication required V2.
Modified at 2025-03-25 11:36:45