curl -X PATCH "https://verification.didit.me/v3/lists/{list_uuid}/" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "Updated List Name"}'
Lists
Update List
PATCH /v3/lists// — rename or update the description of a Didit allowlist or custom list. System blocklists are immutable.
PATCH
/
v3
/
lists
/
{list_uuid}
/
curl -X PATCH "https://verification.didit.me/v3/lists/{list_uuid}/" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "Updated List Name"}'
Update the name or description of a list. System lists cannot be modified.
Request body
| Field | Type | Description |
|---|---|---|
name | string | New name (must be unique per application) |
description | string | New description |
curl -X PATCH "https://verification.didit.me/v3/lists/{list_uuid}/" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "Updated List Name"}'