Skip to main content
GET
/
api
/
v1
/
data-sources
/
{dataSourceId}
/
records
Lấy danh sách bản ghi
curl --request GET \
  --url https://open.cleeksy.com/api/v1/data-sources/{dataSourceId}/records \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "records": [
      {}
    ],
    "total": 123,
    "page": 123,
    "limit": 123
  }
}

Sử dụng

Endpoint này lấy danh sách tất cả bản ghi từ Data Source External. Hỗ trợ phân trang để quản lý dữ liệu lớn. Có thể sử dụng để đồng bộ dữ liệu hoặc tạo báo cáo.

Response

Sử dụng endpoint này để lấy danh sách bản ghi với pagination. Kết quả trả về bao gồm tổng số bản ghi và thông tin phân trang.

Authorizations

Authorization
string
header
required

Bearer token để xác thực

Path Parameters

dataSourceId
string
required

ID của Data Source

Query Parameters

page
integer
default:1

Số trang

limit
integer
default:20

Số bản ghi mỗi trang

Response

Thành công

success
boolean
data
object