- 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
Customers Enquiry
POST
https://api.gofive.co.th/v1/customers/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
customerType
integer
required
latitude
number
optional
longitude
number
optional
distanceLimit
number
optional
states
integer
optional
actionStates
integer
optional
ownerTeams
integer
optional
displayColumns
array[string]
optional
topicInterests
array[integer]
optional
owners
array[string]
optional
primaryOwner
string
optional
classifications
array[integer]
optional
groups
array[integer]
optional
statuses
array[boolean]
optional
probabilities
array[integer]
optional
pageLength
integer
required
skip
integer
optional
orderBy
string
optional
keyword
string
optional
Example
{
"customerType": 11100,
"latitude": 0,
"longitude": 0,
"distanceLimit": 0,
"states": 0,
"actionStates": 0,
"ownerTeams": 0,
"displayColumns": [
"string"
],
"topicInterests": [
0
],
"owners": [
"string"
],
"primaryOwner": "string",
"classifications": [
0
],
"groups": [
0
],
"statuses": [
true
],
"probabilities": [
0
],
"pageLength": 0,
"skip": 0,
"orderBy": "string",
"keyword": "string"
}
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/customers/enquiry' \
--header 'Ocp-Apim-Subscription-Key: <Your-Subscription-Key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"customerType": 11100,
"latitude": 0,
"longitude": 0,
"distanceLimit": 0,
"states": 0,
"actionStates": 0,
"ownerTeams": 0,
"displayColumns": [
"string"
],
"topicInterests": [
0
],
"owners": [
"string"
],
"primaryOwner": "string",
"classifications": [
0
],
"groups": [
0
],
"statuses": [
true
],
"probabilities": [
0
],
"pageLength": 0,
"skip": 0,
"orderBy": "string",
"keyword": "string"
}'
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 {24}]
required
statusCode
integer
required
200 Ok
201 Created
400 BadRequest
401 Unauthorized
404 Record not found
500 Internal Server Error
Example
{
"data": {
"value": [
{
"customerId": 1,
"customerName": "string",
"owners": [
{
"id": "string",
"title": "string",
"teamId": 1,
"pictureUrl": "string"
}
],
"topicInterests": [
{
"topicId": 1,
"topicName": "string"
},
{
"topicId": 2,
"topicName": "string"
},
{
"topicId": 3,
"topicName": "string"
}
],
"latestUpdateByUser": "string",
"latestUpdateType": "string",
"dateLatestUpdated": "2022-11-21T15:51:26+0700",
"activityStats": [
{
"type": "0"
},
{
"type": "0"
}
],
"onGoingStats": [
{
"type": "0"
},
{
"type": "0"
},
{
"type": "0"
},
{
"type": "0"
}
],
"thisYearStats": [
{
"type": "0"
},
{
"type": "0"
}
],
"pictureUrl": "string",
"uniqueName": "string",
"dateAcquired": 1,
"sourceOfLead": "string",
"currentStateId": 1,
"currentStateName": "string"
}
],
"statusCode": 200
},
"statusCode": 1000,
"httpStatusCode": 200
}
🟠401Unauthorized
🟢200Bad Request
🟠401User authentication required V2.
Modified at 2025-04-01 16:23:49