Skip to main content
POST
Bulk Create Accounts
Create several accounts in one call. Same duplicate-domain rule as post_apollo_accounts, applied per record, so a partial success is normal — read the response rather than assuming every row was created. Writes land in the AIsa workspace, which every caller shares: the record becomes visible and editable by others, and there is no per-caller isolation.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
accounts
string
required

Array of accounts to create

append_label_names
string

Label names to append to each created account

run_dedupe
boolean

Enable deduplication. Default false.

Response

Successful response

created_accounts
string

Accounts created in this request

created_accounts[].id
string

Account ID

created_accounts[].name
string

Account name

created_accounts[].domain
string

Account domain

created_accounts[].team_id
string

Team ID

created_accounts[].owner_id
string

Owner ID

created_accounts[].account_stage_id
string

Account stage ID

created_accounts[].phone
string

Phone number

created_accounts[].created_at
string

Created timestamp

created_accounts[].updated_at
string

Updated timestamp

existing_accounts
string

Accounts that already existed (dedupe matches)

existing_accounts[].id
string

Account ID

existing_accounts[].name
string

Account name

existing_accounts[].domain
string

Account domain

existing_accounts[].team_id
string

Team ID

existing_accounts[].owner_id
string

Owner ID

existing_accounts[].account_stage_id
string

Account stage ID

existing_accounts[].phone
string

Phone number

existing_accounts[].created_at
string

Created timestamp

existing_accounts[].updated_at
string

Updated timestamp