@@ -61,7 +61,9 @@ Search Apollo
6161| Parameter | Type | Description |
6262| --------- | ---- | ----------- |
6363| ` people ` | json | Array of people matching the search criteria |
64- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
64+ | ` page ` | number | Current page number |
65+ | ` per_page ` | number | Results per page |
66+ | ` total_entries ` | number | Total matching entries |
6567
6668### ` apollo_people_enrich `
6769
@@ -86,7 +88,7 @@ Enrich data for a single person using Apollo
8688| Parameter | Type | Description |
8789| --------- | ---- | ----------- |
8890| ` person ` | json | Enriched person data from Apollo |
89- | ` metadata ` | json | Enrichment metadata including enriched status |
91+ | ` enriched ` | boolean | Whether the person was successfully enriched |
9092
9193### ` apollo_people_bulk_enrich `
9294
@@ -106,7 +108,8 @@ Enrich data for up to 10 people at once using Apollo
106108| Parameter | Type | Description |
107109| --------- | ---- | ----------- |
108110| ` people ` | json | Array of enriched people data |
109- | ` metadata ` | json | Bulk enrichment metadata including total and enriched counts |
111+ | ` total ` | number | Total number of people processed |
112+ | ` enriched ` | number | Number of people successfully enriched |
110113
111114### ` apollo_organization_search `
112115
@@ -129,7 +132,9 @@ Search Apollo
129132| Parameter | Type | Description |
130133| --------- | ---- | ----------- |
131134| ` organizations ` | json | Array of organizations matching the search criteria |
132- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
135+ | ` page ` | number | Current page number |
136+ | ` per_page ` | number | Results per page |
137+ | ` total_entries ` | number | Total matching entries |
133138
134139### ` apollo_organization_enrich `
135140
@@ -148,7 +153,7 @@ Enrich data for a single organization using Apollo
148153| Parameter | Type | Description |
149154| --------- | ---- | ----------- |
150155| ` organization ` | json | Enriched organization data from Apollo |
151- | ` metadata ` | json | Enrichment metadata including enriched status |
156+ | ` enriched ` | boolean | Whether the organization was successfully enriched |
152157
153158### ` apollo_organization_bulk_enrich `
154159
@@ -166,7 +171,8 @@ Enrich data for up to 10 organizations at once using Apollo
166171| Parameter | Type | Description |
167172| --------- | ---- | ----------- |
168173| ` organizations ` | json | Array of enriched organization data |
169- | ` metadata ` | json | Bulk enrichment metadata including total and enriched counts |
174+ | ` total ` | number | Total number of organizations processed |
175+ | ` enriched ` | number | Number of organizations successfully enriched |
170176
171177### ` apollo_contact_create `
172178
@@ -189,7 +195,7 @@ Create a new contact in your Apollo database
189195| Parameter | Type | Description |
190196| --------- | ---- | ----------- |
191197| ` contact ` | json | Created contact data from Apollo |
192- | ` metadata ` | json | Creation metadata including created status |
198+ | ` created ` | boolean | Whether the contact was successfully created |
193199
194200### ` apollo_contact_update `
195201
@@ -213,7 +219,7 @@ Update an existing contact in your Apollo database
213219| Parameter | Type | Description |
214220| --------- | ---- | ----------- |
215221| ` contact ` | json | Updated contact data from Apollo |
216- | ` metadata ` | json | Update metadata including updated status |
222+ | ` updated ` | boolean | Whether the contact was successfully updated |
217223
218224### ` apollo_contact_search `
219225
@@ -234,7 +240,7 @@ Search your team
234240| Parameter | Type | Description |
235241| --------- | ---- | ----------- |
236242| ` contacts ` | json | Array of contacts matching the search criteria |
237- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
243+ | ` pagination ` | json | Pagination information |
238244
239245### ` apollo_contact_bulk_create `
240246
@@ -254,7 +260,9 @@ Create up to 100 contacts at once in your Apollo database. Supports deduplicatio
254260| --------- | ---- | ----------- |
255261| ` created_contacts ` | json | Array of newly created contacts |
256262| ` existing_contacts ` | json | Array of existing contacts \( when deduplication is enabled\) |
257- | ` metadata ` | json | Bulk creation metadata including counts of created and existing contacts |
263+ | ` total_submitted ` | number | Total number of contacts submitted |
264+ | ` created ` | number | Number of contacts successfully created |
265+ | ` existing ` | number | Number of existing contacts found |
258266
259267### ` apollo_contact_bulk_update `
260268
@@ -273,7 +281,9 @@ Update up to 100 existing contacts at once in your Apollo database. Each contact
273281| --------- | ---- | ----------- |
274282| ` updated_contacts ` | json | Array of successfully updated contacts |
275283| ` failed_contacts ` | json | Array of contacts that failed to update |
276- | ` metadata ` | json | Bulk update metadata including counts of updated and failed contacts |
284+ | ` total_submitted ` | number | Total number of contacts submitted |
285+ | ` updated ` | number | Number of contacts successfully updated |
286+ | ` failed ` | number | Number of contacts that failed to update |
277287
278288### ` apollo_account_create `
279289
@@ -294,7 +304,7 @@ Create a new account (company) in your Apollo database
294304| Parameter | Type | Description |
295305| --------- | ---- | ----------- |
296306| ` account ` | json | Created account data from Apollo |
297- | ` metadata ` | json | Creation metadata including created status |
307+ | ` created ` | boolean | Whether the account was successfully created |
298308
299309### ` apollo_account_update `
300310
@@ -316,7 +326,7 @@ Update an existing account in your Apollo database
316326| Parameter | Type | Description |
317327| --------- | ---- | ----------- |
318328| ` account ` | json | Updated account data from Apollo |
319- | ` metadata ` | json | Update metadata including updated status |
329+ | ` updated ` | boolean | Whether the account was successfully updated |
320330
321331### ` apollo_account_search `
322332
@@ -338,7 +348,7 @@ Search your team
338348| Parameter | Type | Description |
339349| --------- | ---- | ----------- |
340350| ` accounts ` | json | Array of accounts matching the search criteria |
341- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
351+ | ` pagination ` | json | Pagination information |
342352
343353### ` apollo_account_bulk_create `
344354
@@ -357,7 +367,9 @@ Create up to 100 accounts at once in your Apollo database. Note: Apollo does not
357367| --------- | ---- | ----------- |
358368| ` created_accounts ` | json | Array of newly created accounts |
359369| ` failed_accounts ` | json | Array of accounts that failed to create |
360- | ` metadata ` | json | Bulk creation metadata including counts of created and failed accounts |
370+ | ` total_submitted ` | number | Total number of accounts submitted |
371+ | ` created ` | number | Number of accounts successfully created |
372+ | ` failed ` | number | Number of accounts that failed to create |
361373
362374### ` apollo_account_bulk_update `
363375
@@ -376,7 +388,9 @@ Update up to 1000 existing accounts at once in your Apollo database (higher limi
376388| --------- | ---- | ----------- |
377389| ` updated_accounts ` | json | Array of successfully updated accounts |
378390| ` failed_accounts ` | json | Array of accounts that failed to update |
379- | ` metadata ` | json | Bulk update metadata including counts of updated and failed accounts |
391+ | ` total_submitted ` | number | Total number of accounts submitted |
392+ | ` updated ` | number | Number of accounts successfully updated |
393+ | ` failed ` | number | Number of accounts that failed to update |
380394
381395### ` apollo_opportunity_create `
382396
@@ -400,7 +414,7 @@ Create a new deal for an account in your Apollo database (master key required)
400414| Parameter | Type | Description |
401415| --------- | ---- | ----------- |
402416| ` opportunity ` | json | Created opportunity data from Apollo |
403- | ` metadata ` | json | Creation metadata including created status |
417+ | ` created ` | boolean | Whether the opportunity was successfully created |
404418
405419### ` apollo_opportunity_search `
406420
@@ -423,7 +437,9 @@ Search and list all deals/opportunities in your team
423437| Parameter | Type | Description |
424438| --------- | ---- | ----------- |
425439| ` opportunities ` | json | Array of opportunities matching the search criteria |
426- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
440+ | ` page ` | number | Current page number |
441+ | ` per_page ` | number | Results per page |
442+ | ` total_entries ` | number | Total matching entries |
427443
428444### ` apollo_opportunity_get `
429445
@@ -441,7 +457,7 @@ Retrieve complete details of a specific deal/opportunity by ID
441457| Parameter | Type | Description |
442458| --------- | ---- | ----------- |
443459| ` opportunity ` | json | Complete opportunity data from Apollo |
444- | ` metadata ` | json | Retrieval metadata including found status |
460+ | ` found ` | boolean | Whether the opportunity was found |
445461
446462### ` apollo_opportunity_update `
447463
@@ -465,7 +481,7 @@ Update an existing deal/opportunity in your Apollo database
465481| Parameter | Type | Description |
466482| --------- | ---- | ----------- |
467483| ` opportunity ` | json | Updated opportunity data from Apollo |
468- | ` metadata ` | json | Update metadata including updated status |
484+ | ` updated ` | boolean | Whether the opportunity was successfully updated |
469485
470486### ` apollo_sequence_search `
471487
@@ -486,7 +502,9 @@ Search for sequences/campaigns in your team
486502| Parameter | Type | Description |
487503| --------- | ---- | ----------- |
488504| ` sequences ` | json | Array of sequences/campaigns matching the search criteria |
489- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
505+ | ` page ` | number | Current page number |
506+ | ` per_page ` | number | Results per page |
507+ | ` total_entries ` | number | Total matching entries |
490508
491509### ` apollo_sequence_add_contacts `
492510
@@ -507,7 +525,8 @@ Add contacts to an Apollo sequence
507525| Parameter | Type | Description |
508526| --------- | ---- | ----------- |
509527| ` contacts_added ` | json | Array of contact IDs added to the sequence |
510- | ` metadata ` | json | Sequence metadata including sequence_id and total_added count |
528+ | ` sequence_id ` | string | ID of the sequence contacts were added to |
529+ | ` total_added ` | number | Total number of contacts added |
511530
512531### ` apollo_task_create `
513532
@@ -530,7 +549,7 @@ Create a new task in Apollo
530549| Parameter | Type | Description |
531550| --------- | ---- | ----------- |
532551| ` task ` | json | Created task data from Apollo |
533- | ` metadata ` | json | Creation metadata including created status |
552+ | ` created ` | boolean | Whether the task was successfully created |
534553
535554### ` apollo_task_search `
536555
@@ -552,7 +571,7 @@ Search for tasks in Apollo
552571| Parameter | Type | Description |
553572| --------- | ---- | ----------- |
554573| ` tasks ` | json | Array of tasks matching the search criteria |
555- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
574+ | ` pagination ` | json | Pagination information |
556575
557576### ` apollo_email_accounts `
558577
@@ -569,11 +588,6 @@ Get list of team
569588| Parameter | Type | Description |
570589| --------- | ---- | ----------- |
571590| ` email_accounts ` | json | Array of team email accounts linked in Apollo |
572- | ` metadata ` | json | Metadata including total count of email accounts |
591+ | ` total ` | number | Total count of email accounts |
573592
574593
575-
576- ## Notes
577-
578- - Category: ` tools `
579- - Type: ` apollo `
0 commit comments