Exclusion Lists

Get exclusion list details

Returns the details of a specific exclusion list (without domains). To get domains, use the dedicated GET /api/intellimatch/domains?list_id={id} endpoint. Users can only access lists they own or lists shared with their team.

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

Response

Ok

idinteger
namestring
is_sharedboolean
is_ownerboolean
user_idinteger
owner_namestring

Example response

{
  "id": 1,
  "name": "Competitors",
  "is_shared": true,
  "is_owner": true,
  "user_id": 123,
  "owner_name": "John Doe"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.