You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`webhook_url`| string | No | Webhook URL for async phone number delivery \(required when reveal_phone_number is true\)|
110
115
111
116
#### Output
112
117
@@ -397,14 +402,16 @@ Search your team
397
402
398
403
### `apollo_account_bulk_create`
399
404
400
-
Create up to 100 accounts at once in your Apollo database. Note: Apollo does not apply deduplication - duplicate accounts may be created if entries share similar names or domains. Master key required.
405
+
Create up to 100 accounts at once in your Apollo database. Set run_dedupe=true to deduplicate by domain, organization_id, and name. Master key required.
401
406
402
407
#### Input
403
408
404
409
| Parameter | Type | Required | Description |
405
410
| --------- | ---- | -------- | ----------- |
406
411
|`apiKey`| string | Yes | Apollo API key \(master key required\)|
407
-
|`accounts`| array | Yes | Array of accounts to create \(max 100\). Each account should include name \(required\), and optionally website_url, phone, owner_id |
412
+
|`accounts`| array | Yes | Array of accounts to create \(max 100\). Each account should include name \(required\), and optionally domain, phone, owner_id |
413
+
|`append_label_names`| array | No | Array of label names to add to ALL accounts in this request |
414
+
|`run_dedupe`| boolean | No | When true, performs aggressive deduplication by domain, organization_id, and name \(defaults to false\)|
408
415
409
416
#### Output
410
417
@@ -429,6 +436,7 @@ Update up to 1000 existing accounts at once in your Apollo database (higher limi
429
436
|`name`| string | No | When using account_ids, apply this name to all accounts |
430
437
|`owner_id`| string | No | When using account_ids, apply this owner to all accounts |
431
438
|`account_attributes`| json | No | Array of account objects with individual updates \(each must include id\). Example: \[\{"id": "acc1", "name": "Acme", "owner_id": "u1", "account_stage_id": "s1", "typed_custom_fields": \{"field_id": "value"\}\}\]|
439
+
|`async`| boolean | No | When true, processes the update asynchronously. Only supported when using account_ids; returns 422 if used with account_attributes. |
432
440
433
441
#### Output
434
442
@@ -590,9 +598,9 @@ Create one or more tasks in Apollo (one task per contact_id, master key required
590
598
|`apiKey`| string | Yes | Apollo API key \(master key required\)|
591
599
|`user_id`| string | Yes | ID of the Apollo user the task is assigned to |
592
600
|`contact_ids`| array | Yes | Array of contact IDs. One task is created per contact. |
593
-
|`priority`| string |No| Task priority: "high", "medium", or "low"\(defaults to "medium"\)|
601
+
|`priority`| string |Yes| Task priority: "high", "medium", or "low" |
594
602
|`due_at`| string | Yes | Due date/time in ISO 8601 format \(e.g., "2024-12-31T23:59:59Z"\)|
Copy file name to clipboardExpand all lines: apps/sim/app/(landing)/integrations/data/integrations.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -862,7 +862,7 @@
862
862
},
863
863
{
864
864
"name": "Bulk Create Accounts",
865
-
"description": "Create up to 100 accounts at once in your Apollo database. Note: Apollo does not apply deduplication - duplicate accounts may be created if entries share similar names or domains. Master key required."
865
+
"description": "Create up to 100 accounts at once in your Apollo database. Set run_dedupe=true to deduplicate by domain, organization_id, and name. Master key required."
'Create up to 100 accounts at once in your Apollo database. Note: Apollo does not apply deduplication - duplicate accounts may be created if entries share similar names or domains. Master key required.',
14
+
'Create up to 100 accounts at once in your Apollo database. Set run_dedupe=true to deduplicate by domain, organization_id, and name. Master key required.',
0 commit comments