List clauses
Returns a paginated list of clauses belonging to your organization. Supports cursor-based pagination and optional name 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 clauses by name (case-insensitive partial match).
"Confidentiality"
Response
Paginated list of clauses
An array of Clause objects.
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Confidentiality",
"description": "Standard confidentiality clause"
}
]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": "/clauses?limit=20",
"next": "/clauses?limit=20&after=eyJpZCI6IjEyMyJ9",
"prev": "/clauses?limit=20&before=eyJpZCI6IjEwMCJ9"
}