This is documentation for Parallel Developer Documentation **Legacy – v1.x**, which is no longer actively maintained.

For up-to-date documentation, see the **[latest version](https://developer.parallelmarkets.com/docs/server/case-management-api/introduction)** (Current – v2.x).

Version: Legacy – v1.x

## Case Management API
The Case Management API is part of the Case Management product offered by Parallel Markets.

### Case Management Access
All endpoints listed are only available to partners who have subscribed to the Case Management product. If you're currently using Parallel's Accreditation and/or Identity APIs and are looking to migrate to Case Management, see our [Migration Guide](https://developer.parallelmarkets.com/docs/1.x/server/case-management-api/migration-guide).

## Authentication
All case management endpoints use [API Key authentication](https://developer.parallelmarkets.com/docs/1.x/server/api-keys).

## Pagination
Pagination is supported by endpoints that return a list of records, for example, [List Businesses/Individuals](https://developer.parallelmarkets.com/docs/1.x/server/case-management-api/records/list). The following parameters can be used to page your requests.

### Paginated Request Parameters
| Parameter | Description |
| --- | --- |
| `cursor` _(string)_ | _Optional._ A pagination cursor value that is returned in the previous response. |
| `limit` _(integer)_ | _Optional._ Limit the number of records returned per page. <br>_Min: 1, Max: 100, Default: 10_ |

### Paginated Response
| Parameter | Description |
| --- | --- |
| `pagination` | _Optional._ An object containing the `next_cursor` string. The `next_cursor` value can be used in subsequent requests to retrieve the next page of records. If no further records are available, then the `next_cursor` value will be `null`. |
