# Get contracts Gets contracts filtered by single or multiple fields. _To filter by one field_: "filtering.field", "filtering.operator" and "filtering.value" parameters must be filled. _To filter by multiple fields_: "filtering.logic" and "filtering.filters" parameters must be filled. Endpoint: GET /v1/contracts Version: 1.0 ## Query parameters: - `skip` (integer) The number of contracts to skip (used for paging) - `fields` (array) Fields to include in the response - `filtering.logic` (string) Gets or sets the filtering logic for filters. Value by default is 'and' Enum: "and", "or" - `filtering.filters` (array) Array of filters object (optional) _Object Properties_: * _Field_: field to filter by * _Operator_: operator used to filter by * _Value_: value to filter by - `filtering.field` (string) Field to filter by (optional) - `filtering.operator` (string) Operator used for filtering (optional) Enum: "eq", "neq", "lt", "lte", "gt", "gte", "startswith", "endswith", "contains", "doesnotcon", "isnull" - `filtering.value` (string) Value to filter by (optional) - `sorting.direction` (string) Set the sorting direction Enum: "asc", "desc" - `sorting.field` (string) Set the sorting fields - `take` (integer) The maximum number of contracts to returnDefault: 50 - `context` (string) Controls the scope of contracts returned by this operationDefault: PersonalOptions:All - Returns all contracts regardless of whether the authenticated user is a member. Requires the authenticated user to be a member of the Contract Administrators security groupPersonal - Returns contracts which the authenticated user is a member of. Equivalent to the "My contracts" view in LawVuTeams - Returns all contracts that are accessible by teams that the authenticated user is a member ofRestricted - Returns restricted contracts. Requires the authenticated user to be an Organization Administrator Enum: "All", "Personal", "Teams", "Restricted" ## Response 200 fields (text/plain): - `data` (object,null) Represents a single page of processed data. - `total` (integer) The total number of records available.