---
title: "Batch Create Contact Lists"
method: POST
path: "/v1/contact-lists"
tags: ["contacts"]
---

# Batch Create Contact Lists

`POST /v1/contact-lists`

Create contact lists in batch (up to 100 items per request).

Unlike single-resource `POST` endpoints, the body wraps the payloads in
`items` and the response reports a per-item status.

Requires the `contact_lists:write` scope on the API key.

## Request body

- CreateContactListsInput
  - `items` ContactListInput[], required — Contact lists to create.
    - `name` string, required — Name of the list.
    - `default_sequence_template_id` string, uuid, nullable — Sequence template that new entries are auto-enrolled into.

## Response `200`

Successful Response

- BatchResponseContactListOutput
  - `items` BatchItemResultContactListOutput[], required
    - `index` integer, required
    - `status` 'CREATED' | 'UPDATED' | 'FAILED', required
    - `resource` ContactListOutput
      - `id` string, uuid, required — Unique identifier.
      - `name` string, nullable, required — Name of the list.
      - `default_sequence_template_id` string, uuid, nullable, required — Default sequence template for new entries.
      - `default_sequence_template` PublicSequenceTemplateSummary
        - `id` string, uuid, required — Unique identifier of the sequence template.
        - `name` string, required — Template name.
      - `entries_count` integer, required — Current number of entries in the list.
      - `created_at` string, date-time, required — When the list was created.
      - `updated_at` string, date-time, required — When the list last changed.
    - `error` BatchItemError
      - `type` string, required
      - `message` string, required
  - `summary` BatchSummary, required
    - `total` integer, required
    - `succeeded` integer, required
    - `failed` integer, required

---

[API](https://skmtc.net/topo/apis/topo-public-api.md) · [All operations](https://skmtc.net/topo/apis/topo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/topo/topo-public-api/revisions/80f4fd40b75e/schema)
