- 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 Deal Missed Reason Categories
Developing
GET
https://api.gofive.co.th/v1/deals/reason-categories
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Ocp-Apim-Subscription-Key
string
optional
Example:
<Your-Subscription-Key>
Content-Type
string
optional
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/reason-categories' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-Key>' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
data
array [object {6}]
required
dealCategoryId
integer
required
dealCategoryName
string
required
dateCreated
string
required
createdByUserId
string
required
dateModified
string
required
modifiedByUserId
string
required
statusCode
integer
required
httpStatusCode
integer
required
Example
{
"data": [
{
"dealCategoryId": 6066,
"dealCategoryName": "ข้อตกลงและเงื่อนไข",
"dateCreated": "2023-02-07T16:51:40+0700",
"createdByUserId": "00000000-0000-0000-0000-000000000000"
},
{
"dealCategoryId": 6069,
"dealCategoryName": "ถูกยกเลิก",
"dateCreated": "2023-02-07T16:51:40+0700",
"createdByUserId": "00000000-0000-0000-0000-000000000000"
},
{
"dealCategoryId": 6063,
"dealCategoryName": "ราคา",
"dateCreated": "2023-02-07T16:51:40+0700",
"createdByUserId": "00000000-0000-0000-0000-000000000000"
}
],
"statusCode": 1000,
"httpStatusCode": 200
}
🟠401User authentication required V2.
Modified at 2024-08-19 09:48:52