Skip to main content
POST
https://api.aisa.one/apis/v1
/
apollo
/
accounts
/
bulk_create
Bulk Create Accounts
curl --request POST \
  --url https://api.aisa.one/apis/v1/apollo/accounts/bulk_create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accounts": "<string>",
  "append_label_names": "<string>",
  "run_dedupe": true
}
'
{
  "created_accounts": "<string>",
  "created_accounts[].id": "<string>",
  "created_accounts[].name": "<string>",
  "created_accounts[].domain": "<string>",
  "created_accounts[].team_id": "<string>",
  "created_accounts[].owner_id": "<string>",
  "created_accounts[].account_stage_id": "<string>",
  "created_accounts[].phone": "<string>",
  "created_accounts[].created_at": "<string>",
  "created_accounts[].updated_at": "<string>",
  "existing_accounts": "<string>",
  "existing_accounts[].id": "<string>",
  "existing_accounts[].name": "<string>",
  "existing_accounts[].domain": "<string>",
  "existing_accounts[].team_id": "<string>",
  "existing_accounts[].owner_id": "<string>",
  "existing_accounts[].account_stage_id": "<string>",
  "existing_accounts[].phone": "<string>",
  "existing_accounts[].created_at": "<string>",
  "existing_accounts[].updated_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://aisa.one/docs/llms.txt

Use this file to discover all available pages before exploring further.

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