latestOpenAPI 3.0.32026-08-08360156.4 KB

ae7fddf16bf9

Exclusion Lists

Update an exclusion list

Updates an exclusion list's name and/or sharing status.

Only the list owner can update or change sharing settings.

put/api/intellimatch/exclusion-lists/{excludedDomainList_id}

Request body

namestring required

The new name for the list (must be unique per user).

is_sharedboolean

Optional. Set to true to share with team, false to make private.

Example request

{
  "name": "Updated List Name",
  "is_shared": true
}

Response

Ok

successboolean

Example response

{
  "success": true,
  "list": {
    "id": 1,
    "name": "Updated List Name",
    "is_shared": true,
    "is_owner": true
  }
}