@@ -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,9 @@ 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+ | ` page ` | number | Current page number |
244+ | ` per_page ` | number | Results per page |
245+ | ` total_entries ` | number | Total matching entries |
238246
239247### ` apollo_contact_bulk_create `
240248
@@ -254,7 +262,9 @@ Create up to 100 contacts at once in your Apollo database. Supports deduplicatio
254262| --------- | ---- | ----------- |
255263| ` created_contacts ` | json | Array of newly created contacts |
256264| ` existing_contacts ` | json | Array of existing contacts \( when deduplication is enabled\) |
257- | ` metadata ` | json | Bulk creation metadata including counts of created and existing contacts |
265+ | ` total_submitted ` | number | Total number of contacts submitted |
266+ | ` created ` | number | Number of contacts successfully created |
267+ | ` existing ` | number | Number of existing contacts found |
258268
259269### ` apollo_contact_bulk_update `
260270
@@ -273,7 +283,9 @@ Update up to 100 existing contacts at once in your Apollo database. Each contact
273283| --------- | ---- | ----------- |
274284| ` updated_contacts ` | json | Array of successfully updated contacts |
275285| ` failed_contacts ` | json | Array of contacts that failed to update |
276- | ` metadata ` | json | Bulk update metadata including counts of updated and failed contacts |
286+ | ` total_submitted ` | number | Total number of contacts submitted |
287+ | ` updated ` | number | Number of contacts successfully updated |
288+ | ` failed ` | number | Number of contacts that failed to update |
277289
278290### ` apollo_account_create `
279291
@@ -294,7 +306,7 @@ Create a new account (company) in your Apollo database
294306| Parameter | Type | Description |
295307| --------- | ---- | ----------- |
296308| ` account ` | json | Created account data from Apollo |
297- | ` metadata ` | json | Creation metadata including created status |
309+ | ` created ` | boolean | Whether the account was successfully created |
298310
299311### ` apollo_account_update `
300312
@@ -316,7 +328,7 @@ Update an existing account in your Apollo database
316328| Parameter | Type | Description |
317329| --------- | ---- | ----------- |
318330| ` account ` | json | Updated account data from Apollo |
319- | ` metadata ` | json | Update metadata including updated status |
331+ | ` updated ` | boolean | Whether the account was successfully updated |
320332
321333### ` apollo_account_search `
322334
@@ -338,7 +350,9 @@ Search your team
338350| Parameter | Type | Description |
339351| --------- | ---- | ----------- |
340352| ` accounts ` | json | Array of accounts matching the search criteria |
341- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
353+ | ` page ` | number | Current page number |
354+ | ` per_page ` | number | Results per page |
355+ | ` total_entries ` | number | Total matching entries |
342356
343357### ` apollo_account_bulk_create `
344358
@@ -357,7 +371,9 @@ Create up to 100 accounts at once in your Apollo database. Note: Apollo does not
357371| --------- | ---- | ----------- |
358372| ` created_accounts ` | json | Array of newly created accounts |
359373| ` failed_accounts ` | json | Array of accounts that failed to create |
360- | ` metadata ` | json | Bulk creation metadata including counts of created and failed accounts |
374+ | ` total_submitted ` | number | Total number of accounts submitted |
375+ | ` created ` | number | Number of accounts successfully created |
376+ | ` failed ` | number | Number of accounts that failed to create |
361377
362378### ` apollo_account_bulk_update `
363379
@@ -376,7 +392,9 @@ Update up to 1000 existing accounts at once in your Apollo database (higher limi
376392| --------- | ---- | ----------- |
377393| ` updated_accounts ` | json | Array of successfully updated accounts |
378394| ` failed_accounts ` | json | Array of accounts that failed to update |
379- | ` metadata ` | json | Bulk update metadata including counts of updated and failed accounts |
395+ | ` total_submitted ` | number | Total number of accounts submitted |
396+ | ` updated ` | number | Number of accounts successfully updated |
397+ | ` failed ` | number | Number of accounts that failed to update |
380398
381399### ` apollo_opportunity_create `
382400
@@ -400,7 +418,7 @@ Create a new deal for an account in your Apollo database (master key required)
400418| Parameter | Type | Description |
401419| --------- | ---- | ----------- |
402420| ` opportunity ` | json | Created opportunity data from Apollo |
403- | ` metadata ` | json | Creation metadata including created status |
421+ | ` created ` | boolean | Whether the opportunity was successfully created |
404422
405423### ` apollo_opportunity_search `
406424
@@ -423,7 +441,9 @@ Search and list all deals/opportunities in your team
423441| Parameter | Type | Description |
424442| --------- | ---- | ----------- |
425443| ` opportunities ` | json | Array of opportunities matching the search criteria |
426- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
444+ | ` page ` | number | Current page number |
445+ | ` per_page ` | number | Results per page |
446+ | ` total_entries ` | number | Total matching entries |
427447
428448### ` apollo_opportunity_get `
429449
@@ -441,7 +461,7 @@ Retrieve complete details of a specific deal/opportunity by ID
441461| Parameter | Type | Description |
442462| --------- | ---- | ----------- |
443463| ` opportunity ` | json | Complete opportunity data from Apollo |
444- | ` metadata ` | json | Retrieval metadata including found status |
464+ | ` found ` | boolean | Whether the opportunity was found |
445465
446466### ` apollo_opportunity_update `
447467
@@ -465,7 +485,7 @@ Update an existing deal/opportunity in your Apollo database
465485| Parameter | Type | Description |
466486| --------- | ---- | ----------- |
467487| ` opportunity ` | json | Updated opportunity data from Apollo |
468- | ` metadata ` | json | Update metadata including updated status |
488+ | ` updated ` | boolean | Whether the opportunity was successfully updated |
469489
470490### ` apollo_sequence_search `
471491
@@ -486,7 +506,9 @@ Search for sequences/campaigns in your team
486506| Parameter | Type | Description |
487507| --------- | ---- | ----------- |
488508| ` sequences ` | json | Array of sequences/campaigns matching the search criteria |
489- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
509+ | ` page ` | number | Current page number |
510+ | ` per_page ` | number | Results per page |
511+ | ` total_entries ` | number | Total matching entries |
490512
491513### ` apollo_sequence_add_contacts `
492514
@@ -507,7 +529,8 @@ Add contacts to an Apollo sequence
507529| Parameter | Type | Description |
508530| --------- | ---- | ----------- |
509531| ` contacts_added ` | json | Array of contact IDs added to the sequence |
510- | ` metadata ` | json | Sequence metadata including sequence_id and total_added count |
532+ | ` sequence_id ` | string | ID of the sequence contacts were added to |
533+ | ` total_added ` | number | Total number of contacts added |
511534
512535### ` apollo_task_create `
513536
@@ -530,7 +553,7 @@ Create a new task in Apollo
530553| Parameter | Type | Description |
531554| --------- | ---- | ----------- |
532555| ` task ` | json | Created task data from Apollo |
533- | ` metadata ` | json | Creation metadata including created status |
556+ | ` created ` | boolean | Whether the task was successfully created |
534557
535558### ` apollo_task_search `
536559
@@ -552,7 +575,9 @@ Search for tasks in Apollo
552575| Parameter | Type | Description |
553576| --------- | ---- | ----------- |
554577| ` tasks ` | json | Array of tasks matching the search criteria |
555- | ` metadata ` | json | Pagination information including page, per_page, and total_entries |
578+ | ` page ` | number | Current page number |
579+ | ` per_page ` | number | Results per page |
580+ | ` total_entries ` | number | Total matching entries |
556581
557582### ` apollo_email_accounts `
558583
@@ -569,7 +594,7 @@ Get list of team
569594| Parameter | Type | Description |
570595| --------- | ---- | ----------- |
571596| ` email_accounts ` | json | Array of team email accounts linked in Apollo |
572- | ` metadata ` | json | Metadata including total count of email accounts |
597+ | ` total ` | number | Total count of email accounts |
573598
574599
575600
0 commit comments