List case notes

Retrieves the externally-visible notes for a case, most recent first. Requires the case_id returned from the List cases endpoint.

Token scopes: immigration:read

Authentication

AuthorizationBearer
## Authentication The Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail. ```curl curl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \ -H 'Authorization: Bearer YOUR-TOKEN-HERE' ``` [Learn more about authentication](/api/authentication)
OR
AuthorizationBearer
Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/

Query parameters

case_idstringRequiredformat: "uuid"
The unique identifier of the case whose notes should be listed.
cursorstringOptional

Opaque pagination cursor returned as next_cursor from a previous response. Omit to fetch the first page.

limitintegerOptional<=100Defaults to 20
Maximum number of notes to return. Capped at 100.

Response

Successful response with the case’s externally-visible notes.

datalist of objects
has_moreboolean
Whether more notes are available beyond this page.
next_cursorstring or null
Cursor to pass as cursor to fetch the next page. Null when there is no next page.
total_countinteger or null

Total number of externally-visible notes for the case, when available.

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error