- 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 Products With Take & Status
POST
https://api.gofive.co.th/v2/Products/GetProduct
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Content-Type
string
optional
Example:
application/json
Ocp-Apim-Subscription-Key
string
optional
Example:
<Your-Subscription-key>
Body Params application/json
take
integer
required
status
array[integer]
required
Example
{
"take": 0, //จำนวน Product
"status": [
1
] //สถานะของสินค้า [0 = inactive , 1 = activite]
}
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/Products/GetProduct' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"take": 0, //จำนวน Product
"status": [
1
] //สถานะของสินค้า [0 = inactive , 1 = activite]
}'
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
array [object {23}]
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 | null
optional
prices
array [object {6}]
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 | null
optional
useWarranty
boolean | null
optional
timeWarrantyValue
integer | null
optional
timeWarrantyUnit
string | null
optional
warrantyNote
string | null
optional
visibility
boolean
required
active
boolean
required
Example
{
"status": {
"code": "1000",
"description": "Success"
},
"data": [
{
"productCode": "123123",
"productBarcode": "",
"productName": "Phone 2GB",
"category": "Gorup Product",
"cost": 50,
"prices": [
{
"priceTierName": "Normal Price",
"regularPrice": 5000,
"salePrice": 2500,
"pricingTierId": 112,
"vatTaxValue": 7
}
],
"productUnitName": "เครื่อง",
"productTag": [],
"productImage": [],
"trackInventory": true,
"lowStockAlert": 0,
"useWarranty": false,
"timeWarrantyValue": 1,
"timeWarrantyUnit": "Y",
"visibility": true,
"active": true,
"productVariant": []
}
]
}
🟠401Unauthorized
Modified at 2023-02-01 06:30:54