- 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 DealLabel
Developing
GET
https://api.gofive.co.th/v1/deals/label
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
boardId
integer
optional
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/v1/deals/label?boardId=' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-Key>' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
data
array [object {4}]
required
labelName
string
required
labelColorCode
string
required
boardName
string
required
labelId
string
required
statusCode
integer
required
200 Ok
201 Created
400 BadRequest
401 Unauthorized
403 Forbidden
404 Record not found
500 Internal Server Error
httpStatusCode
integer
required
200 Ok
201 Created
400 BadRequest
401 Unauthorized
403 Forbidden
404 Record not found
500 Internal Server Error
Example
{
"data": [
{
"labelName": "Deal Lebel",
"labelColorCode": "#73cdf5",
"boardName": "default board",
"labelId": 110257
},
{
"labelName": "Blue Label",
"labelColorCode": "#fa406d",
"boardName": "default board",
"labelId": 110602
},
{
"labelName": "Red Lebel",
"labelColorCode": "#d11404",
"boardName": "default board",
"labelId": 110256
}
],
"statusCode": 1000,
"httpStatusCode": 200
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🔴500Server Error
🟠401User authentication required V2.
Modified at 2024-08-20 07:06:02