latestOpenAPI 3.0.32026-08-08360156.4 KB

ae7fddf16bf9

Exclusion Lists

Create a new exclusion list

Creates a new exclusion list for the authenticated user.

Optionally share the list with the user's current team.

post/api/intellimatch/exclusion-lists

Request body

namestring required

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

is_sharedboolean

Whether to share the list with the current team.

Example request

{
  "name": "Competitors",
  "is_shared": true
}

Response

Ok

idinteger
namestring
is_sharedboolean
is_ownerboolean

Example response

{
  "id": 1,
  "name": "Competitors",
  "is_shared": true,
  "is_owner": true
}