---
title: "Batch Create Account Entries"
method: POST
path: "/v1/account-entries"
tags: ["accounts"]
---

# Batch Create Account Entries

`POST /v1/account-entries`

Add entries to existing account 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 `account_lists:write` scope on the API key.

## Request body

- CreateAccountEntriesInput
  - `items` AccountEntryInput[], required — Account entries to create.
    - `account_list_id` string, uuid, required — ID of the account list to add this entry to.
    - `name` string, required — Company name.
    - `domain` string, required — Primary company domain.

## Response `200`

Successful Response

- BatchResponseAccountEntryOutput
  - `items` BatchItemResultAccountEntryOutput[], required
    - `index` integer, required
    - `status` 'CREATED' | 'UPDATED' | 'FAILED', required
    - `resource` AccountEntryOutput
      - `id` string, uuid, required — Unique identifier.
      - `account_list_id` string, uuid, required — ID of the list this entry belongs to.
      - `account_id` string, uuid, nullable, required — ID of the account this entry resolved to, once matched.
      - `name` string, required — Company name.
      - `domain` string, required — Primary company domain.
      - `created_at` string, date-time, required — When the entry was created.
      - `updated_at` string, date-time, required — When the entry 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/6e9ca9d5acac/schema)
