List smart fields
Returns a paginated list of smart fields (attribute definitions) in your organization. Supports cursor-based pagination, sorting, and filtering.
Authorizations
API key for authentication. Get your key at https://app.tomorro.com/settings/integrations?integration=api-key
Query Parameters
Number of items per page (1-50)
1 <= x <= 5020
Cursor for forward pagination. Use the next_cursor value from a previous response.
"eyJpZCI6IjEyMyJ9"
Cursor for backward pagination. Use the prev_cursor value from a previous response.
"eyJpZCI6IjEwMCJ9"
Filter by object type. Formats: object=contract (equality), object=in:contract,external_party (in list)
"contract"
Language code for the smart field name. Falls back to the default name when no translation exists.
fr, gb, us, es, de, it, nl, ru, pt, br, jp, gr, pl, si, id, zh-cn, zh-tw, hi, vi, uk, th, bg, hr, dk, ee, fi, hu, ie, lv, lt, ro, sk, se, cz, no, uz, tj, at, is, rs "gb"
Response
List of smart fields with pagination info
An array of SmartField objects.
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Contract Value",
"type": "number"
}
]Pagination metadata including cursors and navigation flags.
{
"limit": 20,
"next_cursor": "eyJpZCI6IjEyMyJ9",
"prev_cursor": "eyJpZCI6IjEwMCJ9",
"has_next": true,
"has_previous": false
}HATEOAS navigation links for pagination.
{
"self": "/smart-fields?limit=20",
"next": "/smart-fields?limit=20&after=eyJpZCI6IjEyMyJ9",
"prev": "/smart-fields?limit=20&before=eyJpZCI6IjEwMCJ9"
}