Nguồn khách hàng
Lấy danh sách nguồn khách hàng
HTTP Request
[GET] /api/v6/accounts/sources
Query Parameters
Fields
Fields | Type | Description |
---|---|---|
id | integer | Định danh |
source_name | string | Tên nguồn |
source_code | string | Mã nguồn |
created_at | string | Ngày tạo |
updated_at | timestamp | Ngày sửa |
valid | bool | Hợp lệ hay không |
Filtering
Fields | Support | Type | Description |
---|---|---|---|
id | eq,in | integer | Định danh khách hàng |
valid | is,in | integer | Hợp lệ hay không |
Sort
Sort (field) | Direction |
---|---|
id | asc,desc |
Limit & Offset
Type | Description | |
---|---|---|
Limit | integer | Lấy bao nhiêu bản ghi |
Offset | integer | Bỏ qua bao nhiêu bản ghi |
Example
HTTP Request
GET api/v6/accounts/"https://v6/accounts/sources" HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
Status
200 OK
Response
{
"data": [
{
"id": 5,
"source_name": "Voucher - Partner 2",
"source_code": "voucher_partner_2",
"created_at": 1710899739,
"updated_at": null,
"valid": 1
},
{
"id": 4,
"source_name": "Voucher - partner3",
"source_code": "voucher_partner3",
"created_at": 1710899365,
"updated_at": null,
"valid": 1
},
{
"id": 2,
"source_name": "nguồn từ c3s",
"source_code": "nguon_tu_c3s",
"created_at": 1710729654,
"updated_at": null,
"valid": 1
},
{
"id": 1,
"source_name": "Zalo-Getfly CRM",
"source_code": "zalo_getfly_crm",
"created_at": 1708657762,
"updated_at": null,
"valid": 1
}
],
"offset": 0,
"limited": false,
"sorted": {
"id": "DESC"
}
}