curl --request POST \
--url https://lens-api.tic.io/team/exports \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '
{
"startRow": 123,
"endRow": 123,
"rowGroupCols": [
{
"id": "<string>",
"displayName": "<string>",
"field": "<string>"
}
],
"groupKeys": [
"<string>"
],
"filterModel": [
{
"columnName": "<string>",
"filterType": "<string>"
}
],
"sortModel": [
{
"sort": "asc",
"colId": "<string>"
}
]
}
'Returns a paginated list of previously generated exports for the team. The request body follows the AG Grid server-side row model — start/end row, sort, and filter model. Requires team admin privileges.
curl --request POST \
--url https://lens-api.tic.io/team/exports \
--header 'Content-Type: application/json-patch+json' \
--header 'x-api-key: <api-key>' \
--data '
{
"startRow": 123,
"endRow": 123,
"rowGroupCols": [
{
"id": "<string>",
"displayName": "<string>",
"field": "<string>"
}
],
"groupKeys": [
"<string>"
],
"filterModel": [
{
"columnName": "<string>",
"filterType": "<string>"
}
],
"sortModel": [
{
"sort": "asc",
"colId": "<string>"
}
]
}
'AG Grid page of TeamExportGrid_Dto rows