- Introduction
- Activity
- Authentication API
- Customer
- Case
- Deal
- Employee
- Expense
- Product
- Create Or Update ProductsPOST
- Get a Product TicketGET
- Get Products With Take & StatusPOST
- Get a Product by ProductCodeGET
- Get Product GroupsGET
- Get Product PropertiesGET
- Get Products By FilterPOST
- Verify Serial Number POST
- /v3/Products/serials/statusGET
- Create or Update Codeguard ProductsPOST
- Update Product StockPUT
- /v1/products/unitsGET
- /v1/products/units CopyGET
- Quotation
- SalesOrder
- Webhooks
- Task
- Setting
Verify Serial Number
POST
https://api.gofive.co.th/v3/products/serials/verification
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:
{{subscription_key}}
Body Params application/json
SerialNumber
string
required
CustomerName
string
optional
CustomerCode
string
optional
CustomerType
integer
optional
SaleOrderNo
string
optional
Note
string
optional
Latitude
number
optional
Longtitude
number
optional
PurchaseDate
string
required
Example
{
"SerialNumber": "string",//string Required
"CustomerName": "John Doe",//string optional (required CustomerCode or CustomerName)
"CustomerCode": "Coode",//string optional (required CustomerCode or CustomerName)
"CustomerType": 1,
"SaleOrderNo": "SO23080001xxxxxxx",
"Note": "This is a test note.",
"Latitude": 13.7563,
"Longtitude": 100.5018,
"PurchaseDate": "2023-08-04"//string format "YYYY-MM-DD" 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/v3/products/serials/verification' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"SerialNumber": "string",//string Required
"CustomerName": "John Doe",//string optional (required CustomerCode or CustomerName)
"CustomerCode": "Coode",//string optional (required CustomerCode or CustomerName)
"CustomerType": 1,
"SaleOrderNo": "SO23080001xxxxxxx",
"Note": "This is a test note.",
"Latitude": 13.7563,
"Longtitude": 100.5018,
"PurchaseDate": "2023-08-04"//string format "YYYY-MM-DD" Required
}'
Responses
🟢200Success
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
ticketId
integer
required
codeGuardId
string
required
serialNumber
string
required
product
object
required
counterId
integer
required
statusCode
integer
required
httpStatusCode
integer
required
Example
{
"data": {
"codeGuardId": "053KLRQ9",
"serialNumber": "IOMO202309011",
"product": {
"id": 51958,
"name": "IOMO",
"description": "เครื่องสแกน",
"pictureUrl": "https://storage-dev.veniocrm.com/venio-app/Company/1015/Product/115169.jpeg?sv=2023-01-03&se=2023-08-08T08%3A13%3A42Z&sr=b&sp=r&sig=f95i5AKDYVL7hASrxNB9BGrhTS7hMBWznDN0v1QdlA0%3D",
"isUseWarranty": true,
"rewardPoints": "0"
},
"counterId": 2372
},
"statusCode": 1000,
"httpStatusCode": 200
}
🟠401Unauthorized
🟠400Bad Request
🔴500Server Error
Modified at 2023-08-17 08:07:26