v1

latestSwagger 2.0Private2026-08-04128286690.5 KB
Bulk Activities

Delete Contact Lists

Use this endpoint to delete up to 100 contact lists in an account.

post/activities/list_delete

Request body

list_idsstring[] required

The array of contact lists <code>list_id</code> to delete.

Example request

{
  "list_ids": [
    "04fe9a97-a579-43c5-bb1a-58ed29bf0a6a"
  ]
}

Response

Request successful. Activity queued for processing.

activity_idstring

The system assigned UUID that uniquely identifies an activity.

statestring

The activity processing state.

started_atstring date-time

Timestamp showing when processing started for the activity, in ISO-8601 format.

completed_atstring date-time

Timestamp showing when processing completed for the activity, in ISO-8601 format.

created_atstring date-time

Timestamp showing when the activity was first requested, in ISO-8601 format.

updated_atstring date-time

Timestamp showing when the activity was last updated, in ISO-8601 format.

percent_doneinteger

The processing percent complete for the activity.

activity_errorsstring[]

An array of error message strings describing the errors that occurred.

Example response

{
  "activity_id": "af86135c-8740-11eb-8abf-fa163ef30864",
  "state": "initialized",
  "started_at": "2019-12-12T15:38:24Z",
  "completed_at": "2019-12-12T15:38:24Z",
  "created_at": "2019-12-12T15:38:24Z",
  "updated_at": "2019-12-12T15:38:24Z",
  "percent_done": 25,
  "activity_errors": [
    "Message describing the error condition."
  ],
  "status": {
    "list_count": 5
  },
  "_links": {
    "self": {
      "href": "/v3/activities/04fa57a7-cf55-4185-cc1a-58ed29bf0a6a"
    }
  }
}