Skip to main content
GET
/
orders
/
exports
List the team's document orders (cursor-paginated)
curl --request GET \
  --url https://lens-api.tic.io/orders/exports \
  --header 'x-api-key: <api-key>'
{
  "pageSize": 123,
  "lastItemId": 123,
  "totalItems": 123,
  "items": [
    {
      "teamDocumentOrderId": 123,
      "teamId": 123,
      "teamName": "<string>",
      "documentOrderGuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "documentTitle": "<string>",
      "documentOrderType": "companyDocument",
      "documentOrderDate": "2023-11-07T05:31:56Z",
      "orderedByUserId": 123,
      "orderedByUserEmail": "<string>",
      "orderedByUserDisplayName": "<string>",
      "price": 123,
      "lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
      "externalId": 123,
      "externalOrigin": "table_Bolagsverket_Notification",
      "externalId2": "<string>",
      "salesOrderRows": [
        123
      ],
      "content": [
        {
          "teamDocumentOrderContentId": 123,
          "teamDocumentOrderId": 123,
          "teamDocumentContentType": "pdf"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tic.io/llms.txt

Use this file to discover all available pages before exploring further.

Pro+ tier

Authorizations

x-api-key
string
header
required

Query Parameters

lastItemId
integer<int32>
default:0

Take rows with TeamDocumentOrderId greater than this value. Pass 0 (default) for the first page.

pageSize
integer<int32>
default:50

Page size, max 100.

Response

200 - application/json

Page of orders

pageSize
integer<int32>
lastItemId
integer<int64>
totalItems
integer<int32>
items
null | object[]