- 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
Expense Enquiry
POST
https://api.gofive.co.th/v1/expenses/enquiry
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>
Body Params application/json
expenseTypeId
object
required
Accommodation = 1001,
Enterainment = 1002,
Fuel = 1003,
Other = 1004,
Training = 1005,
Travelling = 1006,
MeetingWithStaff = 1007,
MeetingWithSales = 1008,
statusIds
array[string] | null
optional
staffCodes
array[string] | null
optional
searchText
string | null
optional
dateStart
string | null
optional
dateEnd
string | null
optional
Example
{
"expenseTypeId": 1001,
"statusIds": [
"string"
],
"staffCodes": [
"string"
],
"searchText": "string",
"dateStart": "2021-09-17T10:42:31.981Z",
"dateEnd": "2021-09-17T10:42:31.981Z"
}
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/v1/expenses/enquiry' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-Key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"expenseTypeId": 1001,
"statusIds": [
"string"
],
"staffCodes": [
"string"
],
"searchText": "string",
"dateStart": "2021-09-17T10:42:31.981Z",
"dateEnd": "2021-09-17T10:42:31.981Z"
}'
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 {3}]
required
statusCode
integer
required
200 Ok
201 Created
400 BadRequest
401 Unauthorized
404 Record not found
500 Internal Server Error
Example
{
"data": {
"value": [
{
"statusId": 0,
"statusName": "string",
"expenses": [
{
"expenseId": 0,
"expenseNo": "string",
"companyId": 0,
"teamId": 0,
"userId": "string",
"staffName": "string",
"orgString": "string",
"orgLevel": 0,
"role": "string",
"companyName": "string",
"teamName": "string",
"statusId": 0,
"statusName": "string",
"expenseTypeIds": "string",
"expenseTypeNames": "string",
"activityId": 0,
"dateActivity": "2021-09-17T10:44:12.359Z",
"keyActivityId": 0,
"keyActivity": "string",
"detailActivities": "string",
"contactNames": "string",
"customerId": 0,
"customerName": "string",
"customerAlias": "string",
"total": 0,
"dateCreated": "2021-09-17T10:44:12.359Z",
"dateTransaction": "2021-09-17T10:44:12.359Z",
"dateProfileModified": "2021-09-17T10:44:12.359Z",
"hasAttachment": true,
"remark": "string",
"dateApproved": "2021-09-17T10:44:12.359Z",
"approvedByUserId": "string",
"approvedByFullname": "string",
"waitingApproveByUserId": "string",
"dateCheckout": "2021-09-17T10:44:12.359Z",
"waitingApproveByRoleId": "string",
"reason": "string",
"subject": "string"
}
]
}
],
"statusCode": 200
},
"statusCode": 1000,
"httpStatusCode": 200
}
🟠401Unauthorized
🟢200Bad Request
🟠403Forbidden
Modified at 2023-01-29 10:15:35