- 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 Product Groups
GET
https://api.gofive.co.th/v1/Products/Groups
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:
<Your-Subscription-Key>
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/v1/Products/Groups' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-Key>' \
--header 'Content-Type: application/json'
Responses
🟢200OK
application/json
Body
statusCode
integer
required
สถานะของ Business Code ถ้า
Success = 1000
Error 1 ตัว = 4001
Error มากกว่า 1 ตัว = 4002
หรือเป็น Subcode ที่ต้องการจะแสดงเพื่อสื่อความหมายของ Error โดย subcode จะเป็นตัวเดียวกับ business error code หรือไม่ก็ได้ เพื่อความสะดวกในการแสดงผล
httpStatusCode
integer
required
200 Ok
201 Created
400 BadRequest
401 Unauthorized
404 Record not found
500 Internal Server Error
data
object
required
value
array [object {4}]
required
statusCode
integer
required
200 Ok
201 Created
400 BadRequest
401 Unauthorized
404 Record not found
500 Internal Server Error
Example
{
"data": {
"value": [
{
"groupId": 1,
"groupType": 1,
"parentId": 1,
"groupName": "string"
}
],
"statusCode": 200
},
"statusCode": 1000,
"httpStatusCode": 200
}
🟠403Forbidden
🟠401Unauthorized
Modified at 2023-02-02 08:58:45