List Customer Contact
Available Filter
Value Type | Example |
---|---|
date | 2010-02-02T20:23:05+07:00 |
Operator Type | Description |
---|---|
gte | Greater Than or Equal |
gt | Greater Than |
lte | Lower Than or Equal |
lt | Lower Than |
eq | Equal |
Field Type | Value Type |
---|---|
created_on | date |
updated_on | date |
Example Filter
Field Type | Operator | Value |
---|---|---|
created_on | lt | 2023-02-02T20:13:05+07:00 |
updated_on | gt | 2022-02-02T20:23:05+07:00 |
Available Sort
Operator Type | Description |
---|---|
asc | Smallest to Largest |
desc | Largest to Smallest |
Field | Description | Example |
---|---|---|
name | Customer Delivery Contact Name | name asc |
position | Customer Delivery Contact Position | position asc |
phone | Customer Delivery Contact Phone | phone asc |
Customer Delivery Contact Email | email asc | |
created_on | Customer Delivery Contact Created At | created_on desc |
updated_on | Customer Delivery Contact Updated At | updated_on desc |
Available Search
Field | Example |
---|---|
name | Note Pertama |
position | Marketing |
phone | 081234567 |
mceasy@mail.co.id |
Path Parameters
id string required
Customer UUID
Query Parameters
filters string[]
limit integer
page integer
search string
sorts string[]
Responses
- 200
- 400
- 401
- 404
OK
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
metadata object
count integer
page integer
total_count integer
total_page integer
data object
paginated_result object[]
id string
name string
phone string
position string
email string
ids string[]
{
"metadata": {
"count": 0,
"page": 0,
"total_count": 0,
"total_page": 0
},
"data": {
"paginated_result": [
{
"id": "string",
"name": "string",
"phone": "string",
"position": "string",
"email": "string"
}
],
"ids": [
"string"
]
}
}
Bad Request
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
errors
errors_v2 object
formatted object
issues object[]
code string
expected
message string
path string[]
received
message string
{
"errors": {},
"errors_v2": {
"formatted": {},
"issues": [
{
"code": "string",
"expected": {},
"message": "string",
"path": [
"string"
],
"received": {}
}
]
},
"message": "string"
}
Unauthorized
Not Found
Loading...