GetSourceDataResponse

Paginated rows imported into the source. `total_count` is the full row count in storage; `rows` is the current page.

Properties

rowsarray ofrequired

Imported rows for this page. Field names depend on the source type.

object
total_countintegerrequired

Total number of rows stored for this source.

page_nointegerrequired

1-indexed page number returned.

page_sizeintegerrequired

Page size used for this response.

Example

GetSourceDataResponse example
{
  "rows": [
    {}
  ],
  "total_count": 0,
  "page_no": 0,
  "page_size": 0
}