- 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
Edit Case by CaseNo
PUT
https://api.gofive.co.th/v1/case/{caseNo}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
caseNo
string
required
Example:
T250200010
Header Params
Content-Type
string
required
Example:
application/json
Ocp-Apim-Subscription-Key
string
required
Example:
<Your Subscriptin-key>
Body Params application/json
subject
string
required
customerNo
string
optional
categoryId
integer
required
dateCase
string
required
dateDue
string
required
activityNos
array[string]
optional
dealNos
array[string]
optional
note
string
optional
assignedToUserId
string
required
Example
{
"subject": "Update Case",
"customerCode": "C000154",
"categoryId": 2140016585,
"dateCase": "2025-02-05T17:35:53.693+0700",
"dateDue": "2025-02-05T17:35:53.693+0700",
"activityNos": [
"A20250200028",
"A20250200029"
],
"dealNos": [
"D241200044",
"D241200047"
],
"note": "description",
"assignedToUserId": "6d473b8f-a6b3-4536-b1e6-f4b7688414e2"
}
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 PUT 'https://api.gofive.co.th/v1/case/T250200010' \
--header 'Ocp-Apim-Subscription-Key: <Your Subscriptin-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"subject": "Update Case",
"customerCode": "C000154",
"categoryId": 2140016585,
"dateCase": "2025-02-05T17:35:53.693+0700",
"dateDue": "2025-02-05T17:35:53.693+0700",
"activityNos": [
"A20250200028",
"A20250200029"
],
"dealNos": [
"D241200044",
"D241200047"
],
"note": "description",
"assignedToUserId": "6d473b8f-a6b3-4536-b1e6-f4b7688414e2"
}'
Responses
🟢200Success
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
data
object
required
statusCode
integer
required
สถานะของ Business Code ถ้า
Success = 1000
Error 1 ตัว = 4001
Error มากกว่า 1 ตัว = 4002
หรือเป็น Subcode ที่ต้องการจะแสดงเพื่อสื่อความหมายของ Error โดย subcode จะเป็นตัวเดียวกับ business error code หรือไม่ก็ได้ เพื่อความสะดวกในการแสดงผล
httpStatusCode
integer
required
200 Ok
400 BadRequest
401 Unauthorized
404 Record not found
500 Internal Server Error
Example
{
"status": {
"code": "1000",
"description": "Success"
},
"data": {
"data": {
"feedbackId": 67941,
"companyId": 507,
"customerId": 705693,
"feedbackNo": "T250200010",
"subject": "Create new case (Edit)",
"statusId": 201,
"feedbackTypeId": 592,
"feedbackFromId": 50642,
"feedbackFromName": "𝗢𝗮𝘀𝗶𝘀 𝗦𝗽𝗮 Thailand",
"note": "Bff description",
"assignedToUserId": "6d473b8f-a6b3-4536-b1e6-f4b7688414e2",
"dateAssigned": "2025-02-06T09:41:33+0700",
"dateCase": "2025-02-05T17:35:53+0700",
"dateDue": "2025-02-05T17:35:53+0700",
"createdByUserId": "23108b99-ee24-43c4-b9e7-58dc6a4e16a2",
"dateCreated": "2025-02-06T09:41:33+0700",
"updatedByUserId": "23108b99-ee24-43c4-b9e7-58dc6a4e16a2",
"dateUpdated": "2025-02-06T09:55:04+0700",
"dateLatestAnswer": "2025-02-06T09:41:33+0700"
},
"statusCode": 1000,
"httpStatusCode": 200
}
}
🟠400Bad Request
🟠401Unauthorized
🟠401User authentication required V2.
Modified at 2025-03-03 06:31:23