Skip to main content
GET
/
v1
/
dsr
List Data Subject Requests for the authenticated tenant (TRU-57)
curl --request GET \
  --url https://api.trulayer.ai/v1/dsr \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "requested_by": "<string>",
      "subject_id": "<string>",
      "type": "delete",
      "status": "pending",
      "completed_at": "2023-11-07T05:31:56Z",
      "export_url": "<string>",
      "error_msg": "<string>"
    }
  ],
  "requests": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "requested_by": "<string>",
      "subject_id": "<string>",
      "type": "delete",
      "status": "pending",
      "completed_at": "2023-11-07T05:31:56Z",
      "export_url": "<string>",
      "error_msg": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.trulayer.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

SDK API key (tl_...) or Clerk session JWT

Query Parameters

cursor
string

Opaque cursor from a previous response's next_cursor.

limit
integer
default:50

Page size (1–200, default 50).

Required range: 1 <= x <= 200

Response

Page of DSR requests

items
object[]
required
deprecated

Legacy alias for requests. Present for v1 back-compatibility only. New integrations should read requests. This field will be removed after the 12-month deprecation window closes (see /v1/deprecations).

requests
object[]
required

The page of DSR rows for this tenant. Canonical key — prefer over items.

next_cursor
string

Opaque cursor for the next page; omitted when there are no further rows.