- 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
Get a Product by ProductCode
GET
https://api.gofive.co.th/v2/products/{productCode}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
productCode
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/products/' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-Key>' \
--header 'Content-Type: application/json'
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
productCode
string
required
productBarcode
string
optional
productName
string
required
productDescription
string
optional
category
string
required
subCategory
string
optional
sub_SubCategory
string
optional
cost
number
optional
prices
array [object {5}]
required
productUnitName
string
required
productWeight
number
optional
productWeightUnit
string
optional
productTag
array[string]
optional
productImage
array[string]
optional
trackInventory
boolean
required
qty
integer | null
optional
lowStockAlert
integer
optional
useWarranty
boolean
required
timeWarrantyValue
integer
optional
timeWarrantyUnit
string
optional
warrantyNote
string
optional
visibility
boolean
required
active
boolean
required
Example
{
"status": {
"code": "1000",
"description": "Success"
},
"data": {
"productCode": "OSP100",
"productBarcode": "",
"productName": "Singel Open API-2",
"productDescription": "Open API Test",
"category": "Open API",
"cost": 10,
"prices": [
{
"priceTierName": "Normal Price",
"regularPrice": 5000,
"salePrice": 2500,
"vatValue": 7,
"useDefaultVat": false
}
],
"productUnitName": "API",
"productTag": [],
"productImage": [
"https://i.postimg.cc/8zj5pZf8/Ea-Ix-XP-VAAY2-K8-X.jpg"
],
"trackInventory": true,
"qty": 90,
"lowStockAlert": 10,
"useWarranty": false,
"visibility": true,
"active": true
}
}
🟠401Unauthorized
🟠400Bad Request
Modified at 2023-02-06 08:25:06