Organization lists

Create, manage, and access organization lists in your Sumble account via the API.

Organization lists let you group target accounts for tracking, enrichment, or export. You can create lists, add organizations to them, and retrieve their contents programmatically.

See Account lists for how lists are created and managed in the web application.

Credit cost

Operation
Cost

List organization lists

1 credit per list returned

Get organization list details

1 credit per organization returned

Create organization list

No credit cost

Add organizations to a list

No credit cost

List organization lists

Returns your saved organization lists with each list's ID, name, and organization count.

List organization lists

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
require_mcpbooleanOptionalDefault: false
Responses
get
/v5/organization-lists

Get organization list details

Returns one organization list and the organizations currently in it.

Use the list_id returned from the list endpoint.

Get organization list details

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
list_idintegerRequired
Query parameters
require_mcpbooleanOptionalDefault: false
Responses
get
/v5/organization-lists/{list_id}

Create organization list

Create a new, empty organization list. Use the returned id to add organizations to it.

Create an organization list

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
require_mcpbooleanOptionalDefault: false
Body
namestringRequired
Responses
post
/v5/organization-lists

Add organizations to a list

Add organizations to an existing list by their Sumble IDs or slugs. Organizations that are already in the list are silently skipped. Invalid IDs or slugs are returned in the failure arrays.

If you have company names or domains but not Sumble IDs or slugs, use the match endpoint first to resolve them.

Add organizations to a list

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
list_idintegerRequired
Query parameters
require_mcpbooleanOptionalDefault: false
Body
organization_idsinteger[]OptionalDefault: []
organization_slugsstring[]OptionalDefault: []
Responses
post
/v5/organization-lists/{list_id}/organizations

Last updated