[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-zoho-books-automation":3,"mdc-cridtv-key":52,"related-org-composio-zoho-books-automation":2218,"related-repo-composio-zoho-books-automation":2364},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":27,"repoUrl":28,"updatedAt":29,"license":30,"forks":31,"topics":32,"repo":47,"sourceUrl":50,"mdContent":51},"zoho-books-automation","Zoho Books Automation","automate Zoho Books accounting workflows","Automate Zoho Books accounting workflows including invoice creation, bill management, contact lookup, payment tracking, and multi-organization support through natural language commands",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[14,18,21,24],{"name":15,"slug":16,"type":17},"Automation","automation","tag",{"name":19,"slug":20,"type":17},"Accounting","accounting",{"name":22,"slug":23,"type":17},"MCP","mcp",{"name":25,"slug":26,"type":17},"Invoicing","invoicing",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:45:51.155391",null,7603,[33,34,35,16,36,37,38,9,39,40,41,23,42,43,44,45,46],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":28,"stars":27,"forks":31,"topics":48,"description":49},[33,34,35,16,36,37,38,9,39,40,41,23,42,43,44,45,46],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Fcomposio-skills\u002Fzoho-books-automation","---\nname: Zoho Books Automation\ndescription: \"Automate Zoho Books accounting workflows including invoice creation, bill management, contact lookup, payment tracking, and multi-organization support through natural language commands\"\nrequires:\n  mcp:\n    - rube\n---\n\n# Zoho Books Automation\n\nAutomate Zoho Books accounting workflows -- create and manage invoices, track bills and payments, look up contacts, export PDFs, and handle multi-organization setups -- all through natural language.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Fzoho_books](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fzoho_books)\n\n---\n\n## Setup\n\n1. Add the Rube MCP server to your environment: `https:\u002F\u002Frube.app\u002Fmcp`\n2. Connect your Zoho Books account when prompted (OAuth flow via Composio)\n3. Start issuing natural language commands for Zoho Books automation\n\n---\n\n## Core Workflows\n\n### 1. Discover Organizations\n\nRetrieve all organizations for the authenticated user. This is a prerequisite since `organization_id` is required by nearly every other endpoint.\n\n**Tool:** `ZOHO_BOOKS_LIST_ORGANIZATIONS`\n\nNo parameters required. Returns organization IDs, names, and metadata.\n\n> Always call this first to obtain the `organization_id` needed by all other Zoho Books tools.\n\nExample prompt:\n> \"List my Zoho Books organizations\"\n\n---\n\n### 2. Create and Manage Invoices\n\nCreate invoices with line items, manage existing invoices, and export them as PDFs.\n\n**Create:** `ZOHO_BOOKS_CREATE_INVOICE`\n\nKey parameters:\n- `organization_id` -- target organization (required)\n- `customer_id` -- customer to bill (required)\n- `line_items` -- array of line items (required), each with:\n  - `item_id` or `name` -- reference existing item or create ad-hoc line\n  - `quantity`, `rate` -- amount details\n  - `description`, `tax_id`, `discount` -- optional details\n- `date` \u002F `due_date` -- dates in `YYYY-MM-DD` format\n- `invoice_number` -- custom number (set `ignore_auto_number_generation=true`)\n- `discount` \u002F `discount_type` -- invoice-level discount (`entity_level` or `item_level`)\n- `notes` \u002F `terms` -- printed on the invoice\n- `send` -- email the invoice immediately after creation\n- `payment_terms` -- number of days for payment\n\n**List:** `ZOHO_BOOKS_LIST_INVOICES`\n\nKey parameters:\n- `organization_id` (required)\n- `status` -- `sent`, `draft`, `overdue`, `paid`, `void`, `unpaid`, `partially_paid`, `viewed`\n- `customer_id` \u002F `customer_name` -- filter by customer\n- `date_start` \u002F `date_end` -- date range filter (`YYYY-MM-DD`)\n- `search_text` -- search invoice number, reference, or customer name\n- `sort_column` \u002F `sort_order` -- sort by `date`, `due_date`, `total`, `balance`, etc.\n- `page` \u002F `per_page` -- pagination (max 200 per page)\n\n**Get details:** `ZOHO_BOOKS_GET_INVOICE` -- fetch by `invoice_id` with `accept` format: `json`, `pdf`, or `html`\n\n**Delete:** `ZOHO_BOOKS_DELETE_INVOICE` -- remove by `invoice_id`\n\n**Bulk export:** `ZOHO_BOOKS_BULK_EXPORT_INVOICES_PDF` -- merge up to 25 invoices into a single PDF\n\n**Bulk print:** `ZOHO_BOOKS_BULK_PRINT_INVOICES` -- generate a combined print-ready PDF for up to 25 invoices\n\nExample prompt:\n> \"Create an invoice for customer 1234567890 with 2 line items: 10 units of Widget A at $25 each, and 5 units of Widget B at $50 each, due in 30 days\"\n\n---\n\n### 3. Track and Manage Bills\n\nList, view, and update vendor bills with comprehensive filtering.\n\n**List:** `ZOHO_BOOKS_LIST_BILLS`\n\nKey parameters:\n- `organization_id` (required)\n- `status` -- `paid`, `open`, `overdue`, `void`, `partially_paid`\n- `vendor_id` \u002F `vendor_name_contains` -- filter by vendor\n- `bill_number` \u002F `bill_number_contains` -- filter by bill number\n- `date_start` \u002F `date_end` -- date range filter\n- `total_greater_than` \u002F `total_less_than` -- amount range filters\n- `sort_column` \u002F `sort_order` -- sort by `vendor_name`, `bill_number`, `date`, `due_date`, `total`, etc.\n- `page` \u002F `per_page` -- pagination (max 200)\n\n**Get details:** `ZOHO_BOOKS_GET_BILL` -- fetch full bill by `bill_id` and `organization_id`\n\n**Update:** `ZOHO_BOOKS_UPDATE_BILL` -- modify existing bill (requires `bill_id`, `organization_id`, `vendor_id`, `bill_number`)\n\nExample prompt:\n> \"List all overdue bills for my organization, sorted by due date\"\n\n---\n\n### 4. Look Up Contacts\n\nSearch and filter contacts (customers and vendors) for use in invoices and bills.\n\n**Tool:** `ZOHO_BOOKS_LIST_CONTACTS`\n\nKey parameters:\n- `organization_id` (required)\n- `contact_type` -- `customer` or `vendor`\n- `contact_name_contains` \u002F `contact_name_startswith` -- name filters\n- `email_contains` \u002F `email_startswith` -- email filters\n- `company_name_contains` -- company name filter\n- `filter_by` -- status filter: `Status.Active`, `Status.Inactive`, `Status.Duplicate`, etc.\n- `search_text` -- search by contact name or notes (max 100 chars)\n- `sort_column` -- sort by `contact_name`, `email`, `outstanding_receivable_amount`, `created_time`, etc.\n- `page` \u002F `per_page` -- pagination (max 200)\n\nExample prompt:\n> \"Find all active customers whose company name contains 'Acme'\"\n\n---\n\n### 5. Track Invoice Payments\n\nList all payments recorded against a specific invoice.\n\n**Tool:** `ZOHO_BOOKS_LIST_INVOICE_PAYMENTS`\n\nKey parameters:\n- `invoice_id` -- the invoice to check (required)\n- `organization_id` -- the organization (required)\n\nReturns all payment transactions applied to the invoice including amounts, dates, and payment methods.\n\nExample prompt:\n> \"Show all payments recorded against invoice 451025000000123045\"\n\n---\n\n### 6. Full Invoicing Workflow\n\nCombine tools for end-to-end invoice management:\n\n1. **Organization**: `ZOHO_BOOKS_LIST_ORGANIZATIONS` -- get `organization_id`\n2. **Contacts**: `ZOHO_BOOKS_LIST_CONTACTS` -- find or verify `customer_id`\n3. **Create**: `ZOHO_BOOKS_CREATE_INVOICE` -- create invoice with line items\n4. **Review**: `ZOHO_BOOKS_GET_INVOICE` -- fetch invoice details or PDF\n5. **Track**: `ZOHO_BOOKS_LIST_INVOICE_PAYMENTS` -- monitor payment status\n6. **Export**: `ZOHO_BOOKS_BULK_EXPORT_INVOICES_PDF` -- batch export for records\n\nExample prompt:\n> \"Find the customer ID for 'Acme Corp', create an invoice for them with consulting services, and then get the PDF\"\n\n---\n\n## Known Pitfalls\n\n| Pitfall | Details |\n|---------|---------|\n| Organization ID always required | Nearly every endpoint requires `organization_id` -- always call `ZOHO_BOOKS_LIST_ORGANIZATIONS` first |\n| Line items required for invoices | `ZOHO_BOOKS_CREATE_INVOICE` requires at least one line item with either `item_id` or `name` |\n| Invoice ID format | Use the numeric `invoice_id` from the invoice object (e.g., `7472322000000264123`), not the encoded ID from `invoice_url` |\n| Bulk limits | Both `ZOHO_BOOKS_BULK_EXPORT_INVOICES_PDF` and `ZOHO_BOOKS_BULK_PRINT_INVOICES` accept a maximum of 25 invoice IDs |\n| Pagination max 200 | All list endpoints cap at 200 records per page -- iterate pages for complete results |\n| Bill update requires all fields | `ZOHO_BOOKS_UPDATE_BILL` requires `bill_id`, `organization_id`, `vendor_id`, and `bill_number` even for partial updates |\n| Date format | All date parameters use `YYYY-MM-DD` format |\n| response_option undocumented | `ZOHO_BOOKS_LIST_INVOICES` has an undocumented `response_option` parameter (0=full, 1=full+totals, 2=counts only) that may change without notice |\n\n---\n\n## Quick Reference\n\n| Action | Tool Slug | Key Params |\n|--------|-----------|------------|\n| List organizations | `ZOHO_BOOKS_LIST_ORGANIZATIONS` | (none) |\n| Create invoice | `ZOHO_BOOKS_CREATE_INVOICE` | `organization_id`, `customer_id`, `line_items` |\n| List invoices | `ZOHO_BOOKS_LIST_INVOICES` | `organization_id`, `status`, `date_start` |\n| Get invoice | `ZOHO_BOOKS_GET_INVOICE` | `invoice_id`, `organization_id`, `accept` |\n| Delete invoice | `ZOHO_BOOKS_DELETE_INVOICE` | `invoice_id`, `organization_id` |\n| Bulk export PDF | `ZOHO_BOOKS_BULK_EXPORT_INVOICES_PDF` | `organization_id`, `invoice_ids` |\n| Bulk print | `ZOHO_BOOKS_BULK_PRINT_INVOICES` | `organization_id`, `invoice_ids` |\n| List bills | `ZOHO_BOOKS_LIST_BILLS` | `organization_id`, `status`, `vendor_id` |\n| Get bill | `ZOHO_BOOKS_GET_BILL` | `bill_id`, `organization_id` |\n| Update bill | `ZOHO_BOOKS_UPDATE_BILL` | `bill_id`, `organization_id`, `vendor_id` |\n| List contacts | `ZOHO_BOOKS_LIST_CONTACTS` | `organization_id`, `contact_type`, `search_text` |\n| List payments | `ZOHO_BOOKS_LIST_INVOICE_PAYMENTS` | `invoice_id`, `organization_id` |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":53,"body":56},{"name":5,"description":7,"requires":54},{"mcp":55},[43],{"type":57,"children":58},"root",[59,66,72,92,96,103,130,133,139,146,159,174,179,195,200,208,211,217,222,237,242,461,476,480,674,728,750,767,784,788,796,799,805,810,824,828,1011,1040,1081,1085,1093,1096,1102,1107,1121,1125,1301,1305,1313,1316,1322,1327,1341,1345,1368,1373,1377,1385,1388,1394,1399,1509,1513,1521,1524,1530,1776,1779,1785,2200,2203],{"type":60,"tag":61,"props":62,"children":63},"element","h1",{"id":4},[64],{"type":65,"value":5},"text",{"type":60,"tag":67,"props":68,"children":69},"p",{},[70],{"type":65,"value":71},"Automate Zoho Books accounting workflows -- create and manage invoices, track bills and payments, look up contacts, export PDFs, and handle multi-organization setups -- all through natural language.",{"type":60,"tag":67,"props":73,"children":74},{},[75,81,83],{"type":60,"tag":76,"props":77,"children":78},"strong",{},[79],{"type":65,"value":80},"Toolkit docs:",{"type":65,"value":82}," ",{"type":60,"tag":84,"props":85,"children":89},"a",{"href":86,"rel":87},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Fzoho_books",[88],"nofollow",[90],{"type":65,"value":91},"composio.dev\u002Ftoolkits\u002Fzoho_books",{"type":60,"tag":93,"props":94,"children":95},"hr",{},[],{"type":60,"tag":97,"props":98,"children":100},"h2",{"id":99},"setup",[101],{"type":65,"value":102},"Setup",{"type":60,"tag":104,"props":105,"children":106},"ol",{},[107,120,125],{"type":60,"tag":108,"props":109,"children":110},"li",{},[111,113],{"type":65,"value":112},"Add the Rube MCP server to your environment: ",{"type":60,"tag":114,"props":115,"children":117},"code",{"className":116},[],[118],{"type":65,"value":119},"https:\u002F\u002Frube.app\u002Fmcp",{"type":60,"tag":108,"props":121,"children":122},{},[123],{"type":65,"value":124},"Connect your Zoho Books account when prompted (OAuth flow via Composio)",{"type":60,"tag":108,"props":126,"children":127},{},[128],{"type":65,"value":129},"Start issuing natural language commands for Zoho Books automation",{"type":60,"tag":93,"props":131,"children":132},{},[],{"type":60,"tag":97,"props":134,"children":136},{"id":135},"core-workflows",[137],{"type":65,"value":138},"Core Workflows",{"type":60,"tag":140,"props":141,"children":143},"h3",{"id":142},"_1-discover-organizations",[144],{"type":65,"value":145},"1. Discover Organizations",{"type":60,"tag":67,"props":147,"children":148},{},[149,151,157],{"type":65,"value":150},"Retrieve all organizations for the authenticated user. This is a prerequisite since ",{"type":60,"tag":114,"props":152,"children":154},{"className":153},[],[155],{"type":65,"value":156},"organization_id",{"type":65,"value":158}," is required by nearly every other endpoint.",{"type":60,"tag":67,"props":160,"children":161},{},[162,167,168],{"type":60,"tag":76,"props":163,"children":164},{},[165],{"type":65,"value":166},"Tool:",{"type":65,"value":82},{"type":60,"tag":114,"props":169,"children":171},{"className":170},[],[172],{"type":65,"value":173},"ZOHO_BOOKS_LIST_ORGANIZATIONS",{"type":60,"tag":67,"props":175,"children":176},{},[177],{"type":65,"value":178},"No parameters required. Returns organization IDs, names, and metadata.",{"type":60,"tag":180,"props":181,"children":182},"blockquote",{},[183],{"type":60,"tag":67,"props":184,"children":185},{},[186,188,193],{"type":65,"value":187},"Always call this first to obtain the ",{"type":60,"tag":114,"props":189,"children":191},{"className":190},[],[192],{"type":65,"value":156},{"type":65,"value":194}," needed by all other Zoho Books tools.",{"type":60,"tag":67,"props":196,"children":197},{},[198],{"type":65,"value":199},"Example prompt:",{"type":60,"tag":180,"props":201,"children":202},{},[203],{"type":60,"tag":67,"props":204,"children":205},{},[206],{"type":65,"value":207},"\"List my Zoho Books organizations\"",{"type":60,"tag":93,"props":209,"children":210},{},[],{"type":60,"tag":140,"props":212,"children":214},{"id":213},"_2-create-and-manage-invoices",[215],{"type":65,"value":216},"2. Create and Manage Invoices",{"type":60,"tag":67,"props":218,"children":219},{},[220],{"type":65,"value":221},"Create invoices with line items, manage existing invoices, and export them as PDFs.",{"type":60,"tag":67,"props":223,"children":224},{},[225,230,231],{"type":60,"tag":76,"props":226,"children":227},{},[228],{"type":65,"value":229},"Create:",{"type":65,"value":82},{"type":60,"tag":114,"props":232,"children":234},{"className":233},[],[235],{"type":65,"value":236},"ZOHO_BOOKS_CREATE_INVOICE",{"type":60,"tag":67,"props":238,"children":239},{},[240],{"type":65,"value":241},"Key parameters:",{"type":60,"tag":243,"props":244,"children":245},"ul",{},[246,256,267,344,371,390,421,439,450],{"type":60,"tag":108,"props":247,"children":248},{},[249,254],{"type":60,"tag":114,"props":250,"children":252},{"className":251},[],[253],{"type":65,"value":156},{"type":65,"value":255}," -- target organization (required)",{"type":60,"tag":108,"props":257,"children":258},{},[259,265],{"type":60,"tag":114,"props":260,"children":262},{"className":261},[],[263],{"type":65,"value":264},"customer_id",{"type":65,"value":266}," -- customer to bill (required)",{"type":60,"tag":108,"props":268,"children":269},{},[270,276,278],{"type":60,"tag":114,"props":271,"children":273},{"className":272},[],[274],{"type":65,"value":275},"line_items",{"type":65,"value":277}," -- array of line items (required), each with:\n",{"type":60,"tag":243,"props":279,"children":280},{},[281,300,319],{"type":60,"tag":108,"props":282,"children":283},{},[284,290,292,298],{"type":60,"tag":114,"props":285,"children":287},{"className":286},[],[288],{"type":65,"value":289},"item_id",{"type":65,"value":291}," or ",{"type":60,"tag":114,"props":293,"children":295},{"className":294},[],[296],{"type":65,"value":297},"name",{"type":65,"value":299}," -- reference existing item or create ad-hoc line",{"type":60,"tag":108,"props":301,"children":302},{},[303,309,311,317],{"type":60,"tag":114,"props":304,"children":306},{"className":305},[],[307],{"type":65,"value":308},"quantity",{"type":65,"value":310},", ",{"type":60,"tag":114,"props":312,"children":314},{"className":313},[],[315],{"type":65,"value":316},"rate",{"type":65,"value":318}," -- amount details",{"type":60,"tag":108,"props":320,"children":321},{},[322,328,329,335,336,342],{"type":60,"tag":114,"props":323,"children":325},{"className":324},[],[326],{"type":65,"value":327},"description",{"type":65,"value":310},{"type":60,"tag":114,"props":330,"children":332},{"className":331},[],[333],{"type":65,"value":334},"tax_id",{"type":65,"value":310},{"type":60,"tag":114,"props":337,"children":339},{"className":338},[],[340],{"type":65,"value":341},"discount",{"type":65,"value":343}," -- optional details",{"type":60,"tag":108,"props":345,"children":346},{},[347,353,355,361,363,369],{"type":60,"tag":114,"props":348,"children":350},{"className":349},[],[351],{"type":65,"value":352},"date",{"type":65,"value":354}," \u002F ",{"type":60,"tag":114,"props":356,"children":358},{"className":357},[],[359],{"type":65,"value":360},"due_date",{"type":65,"value":362}," -- dates in ",{"type":60,"tag":114,"props":364,"children":366},{"className":365},[],[367],{"type":65,"value":368},"YYYY-MM-DD",{"type":65,"value":370}," format",{"type":60,"tag":108,"props":372,"children":373},{},[374,380,382,388],{"type":60,"tag":114,"props":375,"children":377},{"className":376},[],[378],{"type":65,"value":379},"invoice_number",{"type":65,"value":381}," -- custom number (set ",{"type":60,"tag":114,"props":383,"children":385},{"className":384},[],[386],{"type":65,"value":387},"ignore_auto_number_generation=true",{"type":65,"value":389},")",{"type":60,"tag":108,"props":391,"children":392},{},[393,398,399,405,407,413,414,420],{"type":60,"tag":114,"props":394,"children":396},{"className":395},[],[397],{"type":65,"value":341},{"type":65,"value":354},{"type":60,"tag":114,"props":400,"children":402},{"className":401},[],[403],{"type":65,"value":404},"discount_type",{"type":65,"value":406}," -- invoice-level discount (",{"type":60,"tag":114,"props":408,"children":410},{"className":409},[],[411],{"type":65,"value":412},"entity_level",{"type":65,"value":291},{"type":60,"tag":114,"props":415,"children":417},{"className":416},[],[418],{"type":65,"value":419},"item_level",{"type":65,"value":389},{"type":60,"tag":108,"props":422,"children":423},{},[424,430,431,437],{"type":60,"tag":114,"props":425,"children":427},{"className":426},[],[428],{"type":65,"value":429},"notes",{"type":65,"value":354},{"type":60,"tag":114,"props":432,"children":434},{"className":433},[],[435],{"type":65,"value":436},"terms",{"type":65,"value":438}," -- printed on the invoice",{"type":60,"tag":108,"props":440,"children":441},{},[442,448],{"type":60,"tag":114,"props":443,"children":445},{"className":444},[],[446],{"type":65,"value":447},"send",{"type":65,"value":449}," -- email the invoice immediately after creation",{"type":60,"tag":108,"props":451,"children":452},{},[453,459],{"type":60,"tag":114,"props":454,"children":456},{"className":455},[],[457],{"type":65,"value":458},"payment_terms",{"type":65,"value":460}," -- number of days for payment",{"type":60,"tag":67,"props":462,"children":463},{},[464,469,470],{"type":60,"tag":76,"props":465,"children":466},{},[467],{"type":65,"value":468},"List:",{"type":65,"value":82},{"type":60,"tag":114,"props":471,"children":473},{"className":472},[],[474],{"type":65,"value":475},"ZOHO_BOOKS_LIST_INVOICES",{"type":60,"tag":67,"props":477,"children":478},{},[479],{"type":65,"value":241},{"type":60,"tag":243,"props":481,"children":482},{},[483,493,559,576,600,611,656],{"type":60,"tag":108,"props":484,"children":485},{},[486,491],{"type":60,"tag":114,"props":487,"children":489},{"className":488},[],[490],{"type":65,"value":156},{"type":65,"value":492}," (required)",{"type":60,"tag":108,"props":494,"children":495},{},[496,502,504,510,511,517,518,524,525,531,532,538,539,545,546,552,553],{"type":60,"tag":114,"props":497,"children":499},{"className":498},[],[500],{"type":65,"value":501},"status",{"type":65,"value":503}," -- ",{"type":60,"tag":114,"props":505,"children":507},{"className":506},[],[508],{"type":65,"value":509},"sent",{"type":65,"value":310},{"type":60,"tag":114,"props":512,"children":514},{"className":513},[],[515],{"type":65,"value":516},"draft",{"type":65,"value":310},{"type":60,"tag":114,"props":519,"children":521},{"className":520},[],[522],{"type":65,"value":523},"overdue",{"type":65,"value":310},{"type":60,"tag":114,"props":526,"children":528},{"className":527},[],[529],{"type":65,"value":530},"paid",{"type":65,"value":310},{"type":60,"tag":114,"props":533,"children":535},{"className":534},[],[536],{"type":65,"value":537},"void",{"type":65,"value":310},{"type":60,"tag":114,"props":540,"children":542},{"className":541},[],[543],{"type":65,"value":544},"unpaid",{"type":65,"value":310},{"type":60,"tag":114,"props":547,"children":549},{"className":548},[],[550],{"type":65,"value":551},"partially_paid",{"type":65,"value":310},{"type":60,"tag":114,"props":554,"children":556},{"className":555},[],[557],{"type":65,"value":558},"viewed",{"type":60,"tag":108,"props":560,"children":561},{},[562,567,568,574],{"type":60,"tag":114,"props":563,"children":565},{"className":564},[],[566],{"type":65,"value":264},{"type":65,"value":354},{"type":60,"tag":114,"props":569,"children":571},{"className":570},[],[572],{"type":65,"value":573},"customer_name",{"type":65,"value":575}," -- filter by customer",{"type":60,"tag":108,"props":577,"children":578},{},[579,585,586,592,594,599],{"type":60,"tag":114,"props":580,"children":582},{"className":581},[],[583],{"type":65,"value":584},"date_start",{"type":65,"value":354},{"type":60,"tag":114,"props":587,"children":589},{"className":588},[],[590],{"type":65,"value":591},"date_end",{"type":65,"value":593}," -- date range filter (",{"type":60,"tag":114,"props":595,"children":597},{"className":596},[],[598],{"type":65,"value":368},{"type":65,"value":389},{"type":60,"tag":108,"props":601,"children":602},{},[603,609],{"type":60,"tag":114,"props":604,"children":606},{"className":605},[],[607],{"type":65,"value":608},"search_text",{"type":65,"value":610}," -- search invoice number, reference, or customer name",{"type":60,"tag":108,"props":612,"children":613},{},[614,620,621,627,629,634,635,640,641,647,648,654],{"type":60,"tag":114,"props":615,"children":617},{"className":616},[],[618],{"type":65,"value":619},"sort_column",{"type":65,"value":354},{"type":60,"tag":114,"props":622,"children":624},{"className":623},[],[625],{"type":65,"value":626},"sort_order",{"type":65,"value":628}," -- sort by ",{"type":60,"tag":114,"props":630,"children":632},{"className":631},[],[633],{"type":65,"value":352},{"type":65,"value":310},{"type":60,"tag":114,"props":636,"children":638},{"className":637},[],[639],{"type":65,"value":360},{"type":65,"value":310},{"type":60,"tag":114,"props":642,"children":644},{"className":643},[],[645],{"type":65,"value":646},"total",{"type":65,"value":310},{"type":60,"tag":114,"props":649,"children":651},{"className":650},[],[652],{"type":65,"value":653},"balance",{"type":65,"value":655},", etc.",{"type":60,"tag":108,"props":657,"children":658},{},[659,665,666,672],{"type":60,"tag":114,"props":660,"children":662},{"className":661},[],[663],{"type":65,"value":664},"page",{"type":65,"value":354},{"type":60,"tag":114,"props":667,"children":669},{"className":668},[],[670],{"type":65,"value":671},"per_page",{"type":65,"value":673}," -- pagination (max 200 per page)",{"type":60,"tag":67,"props":675,"children":676},{},[677,682,683,689,691,697,699,705,707,713,714,720,722],{"type":60,"tag":76,"props":678,"children":679},{},[680],{"type":65,"value":681},"Get details:",{"type":65,"value":82},{"type":60,"tag":114,"props":684,"children":686},{"className":685},[],[687],{"type":65,"value":688},"ZOHO_BOOKS_GET_INVOICE",{"type":65,"value":690}," -- fetch by ",{"type":60,"tag":114,"props":692,"children":694},{"className":693},[],[695],{"type":65,"value":696},"invoice_id",{"type":65,"value":698}," with ",{"type":60,"tag":114,"props":700,"children":702},{"className":701},[],[703],{"type":65,"value":704},"accept",{"type":65,"value":706}," format: ",{"type":60,"tag":114,"props":708,"children":710},{"className":709},[],[711],{"type":65,"value":712},"json",{"type":65,"value":310},{"type":60,"tag":114,"props":715,"children":717},{"className":716},[],[718],{"type":65,"value":719},"pdf",{"type":65,"value":721},", or ",{"type":60,"tag":114,"props":723,"children":725},{"className":724},[],[726],{"type":65,"value":727},"html",{"type":60,"tag":67,"props":729,"children":730},{},[731,736,737,743,745],{"type":60,"tag":76,"props":732,"children":733},{},[734],{"type":65,"value":735},"Delete:",{"type":65,"value":82},{"type":60,"tag":114,"props":738,"children":740},{"className":739},[],[741],{"type":65,"value":742},"ZOHO_BOOKS_DELETE_INVOICE",{"type":65,"value":744}," -- remove by ",{"type":60,"tag":114,"props":746,"children":748},{"className":747},[],[749],{"type":65,"value":696},{"type":60,"tag":67,"props":751,"children":752},{},[753,758,759,765],{"type":60,"tag":76,"props":754,"children":755},{},[756],{"type":65,"value":757},"Bulk export:",{"type":65,"value":82},{"type":60,"tag":114,"props":760,"children":762},{"className":761},[],[763],{"type":65,"value":764},"ZOHO_BOOKS_BULK_EXPORT_INVOICES_PDF",{"type":65,"value":766}," -- merge up to 25 invoices into a single PDF",{"type":60,"tag":67,"props":768,"children":769},{},[770,775,776,782],{"type":60,"tag":76,"props":771,"children":772},{},[773],{"type":65,"value":774},"Bulk print:",{"type":65,"value":82},{"type":60,"tag":114,"props":777,"children":779},{"className":778},[],[780],{"type":65,"value":781},"ZOHO_BOOKS_BULK_PRINT_INVOICES",{"type":65,"value":783}," -- generate a combined print-ready PDF for up to 25 invoices",{"type":60,"tag":67,"props":785,"children":786},{},[787],{"type":65,"value":199},{"type":60,"tag":180,"props":789,"children":790},{},[791],{"type":60,"tag":67,"props":792,"children":793},{},[794],{"type":65,"value":795},"\"Create an invoice for customer 1234567890 with 2 line items: 10 units of Widget A at $25 each, and 5 units of Widget B at $50 each, due in 30 days\"",{"type":60,"tag":93,"props":797,"children":798},{},[],{"type":60,"tag":140,"props":800,"children":802},{"id":801},"_3-track-and-manage-bills",[803],{"type":65,"value":804},"3. Track and Manage Bills",{"type":60,"tag":67,"props":806,"children":807},{},[808],{"type":65,"value":809},"List, view, and update vendor bills with comprehensive filtering.",{"type":60,"tag":67,"props":811,"children":812},{},[813,817,818],{"type":60,"tag":76,"props":814,"children":815},{},[816],{"type":65,"value":468},{"type":65,"value":82},{"type":60,"tag":114,"props":819,"children":821},{"className":820},[],[822],{"type":65,"value":823},"ZOHO_BOOKS_LIST_BILLS",{"type":60,"tag":67,"props":825,"children":826},{},[827],{"type":65,"value":241},{"type":60,"tag":243,"props":829,"children":830},{},[831,840,879,897,915,931,949,995],{"type":60,"tag":108,"props":832,"children":833},{},[834,839],{"type":60,"tag":114,"props":835,"children":837},{"className":836},[],[838],{"type":65,"value":156},{"type":65,"value":492},{"type":60,"tag":108,"props":841,"children":842},{},[843,848,849,854,855,861,862,867,868,873,874],{"type":60,"tag":114,"props":844,"children":846},{"className":845},[],[847],{"type":65,"value":501},{"type":65,"value":503},{"type":60,"tag":114,"props":850,"children":852},{"className":851},[],[853],{"type":65,"value":530},{"type":65,"value":310},{"type":60,"tag":114,"props":856,"children":858},{"className":857},[],[859],{"type":65,"value":860},"open",{"type":65,"value":310},{"type":60,"tag":114,"props":863,"children":865},{"className":864},[],[866],{"type":65,"value":523},{"type":65,"value":310},{"type":60,"tag":114,"props":869,"children":871},{"className":870},[],[872],{"type":65,"value":537},{"type":65,"value":310},{"type":60,"tag":114,"props":875,"children":877},{"className":876},[],[878],{"type":65,"value":551},{"type":60,"tag":108,"props":880,"children":881},{},[882,888,889,895],{"type":60,"tag":114,"props":883,"children":885},{"className":884},[],[886],{"type":65,"value":887},"vendor_id",{"type":65,"value":354},{"type":60,"tag":114,"props":890,"children":892},{"className":891},[],[893],{"type":65,"value":894},"vendor_name_contains",{"type":65,"value":896}," -- filter by vendor",{"type":60,"tag":108,"props":898,"children":899},{},[900,906,907,913],{"type":60,"tag":114,"props":901,"children":903},{"className":902},[],[904],{"type":65,"value":905},"bill_number",{"type":65,"value":354},{"type":60,"tag":114,"props":908,"children":910},{"className":909},[],[911],{"type":65,"value":912},"bill_number_contains",{"type":65,"value":914}," -- filter by bill number",{"type":60,"tag":108,"props":916,"children":917},{},[918,923,924,929],{"type":60,"tag":114,"props":919,"children":921},{"className":920},[],[922],{"type":65,"value":584},{"type":65,"value":354},{"type":60,"tag":114,"props":925,"children":927},{"className":926},[],[928],{"type":65,"value":591},{"type":65,"value":930}," -- date range filter",{"type":60,"tag":108,"props":932,"children":933},{},[934,940,941,947],{"type":60,"tag":114,"props":935,"children":937},{"className":936},[],[938],{"type":65,"value":939},"total_greater_than",{"type":65,"value":354},{"type":60,"tag":114,"props":942,"children":944},{"className":943},[],[945],{"type":65,"value":946},"total_less_than",{"type":65,"value":948}," -- amount range filters",{"type":60,"tag":108,"props":950,"children":951},{},[952,957,958,963,964,970,971,976,977,982,983,988,989,994],{"type":60,"tag":114,"props":953,"children":955},{"className":954},[],[956],{"type":65,"value":619},{"type":65,"value":354},{"type":60,"tag":114,"props":959,"children":961},{"className":960},[],[962],{"type":65,"value":626},{"type":65,"value":628},{"type":60,"tag":114,"props":965,"children":967},{"className":966},[],[968],{"type":65,"value":969},"vendor_name",{"type":65,"value":310},{"type":60,"tag":114,"props":972,"children":974},{"className":973},[],[975],{"type":65,"value":905},{"type":65,"value":310},{"type":60,"tag":114,"props":978,"children":980},{"className":979},[],[981],{"type":65,"value":352},{"type":65,"value":310},{"type":60,"tag":114,"props":984,"children":986},{"className":985},[],[987],{"type":65,"value":360},{"type":65,"value":310},{"type":60,"tag":114,"props":990,"children":992},{"className":991},[],[993],{"type":65,"value":646},{"type":65,"value":655},{"type":60,"tag":108,"props":996,"children":997},{},[998,1003,1004,1009],{"type":60,"tag":114,"props":999,"children":1001},{"className":1000},[],[1002],{"type":65,"value":664},{"type":65,"value":354},{"type":60,"tag":114,"props":1005,"children":1007},{"className":1006},[],[1008],{"type":65,"value":671},{"type":65,"value":1010}," -- pagination (max 200)",{"type":60,"tag":67,"props":1012,"children":1013},{},[1014,1018,1019,1025,1027,1033,1035],{"type":60,"tag":76,"props":1015,"children":1016},{},[1017],{"type":65,"value":681},{"type":65,"value":82},{"type":60,"tag":114,"props":1020,"children":1022},{"className":1021},[],[1023],{"type":65,"value":1024},"ZOHO_BOOKS_GET_BILL",{"type":65,"value":1026}," -- fetch full bill by ",{"type":60,"tag":114,"props":1028,"children":1030},{"className":1029},[],[1031],{"type":65,"value":1032},"bill_id",{"type":65,"value":1034}," and ",{"type":60,"tag":114,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":65,"value":156},{"type":60,"tag":67,"props":1041,"children":1042},{},[1043,1048,1049,1055,1057,1062,1063,1068,1069,1074,1075,1080],{"type":60,"tag":76,"props":1044,"children":1045},{},[1046],{"type":65,"value":1047},"Update:",{"type":65,"value":82},{"type":60,"tag":114,"props":1050,"children":1052},{"className":1051},[],[1053],{"type":65,"value":1054},"ZOHO_BOOKS_UPDATE_BILL",{"type":65,"value":1056}," -- modify existing bill (requires ",{"type":60,"tag":114,"props":1058,"children":1060},{"className":1059},[],[1061],{"type":65,"value":1032},{"type":65,"value":310},{"type":60,"tag":114,"props":1064,"children":1066},{"className":1065},[],[1067],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":1070,"children":1072},{"className":1071},[],[1073],{"type":65,"value":887},{"type":65,"value":310},{"type":60,"tag":114,"props":1076,"children":1078},{"className":1077},[],[1079],{"type":65,"value":905},{"type":65,"value":389},{"type":60,"tag":67,"props":1082,"children":1083},{},[1084],{"type":65,"value":199},{"type":60,"tag":180,"props":1086,"children":1087},{},[1088],{"type":60,"tag":67,"props":1089,"children":1090},{},[1091],{"type":65,"value":1092},"\"List all overdue bills for my organization, sorted by due date\"",{"type":60,"tag":93,"props":1094,"children":1095},{},[],{"type":60,"tag":140,"props":1097,"children":1099},{"id":1098},"_4-look-up-contacts",[1100],{"type":65,"value":1101},"4. Look Up Contacts",{"type":60,"tag":67,"props":1103,"children":1104},{},[1105],{"type":65,"value":1106},"Search and filter contacts (customers and vendors) for use in invoices and bills.",{"type":60,"tag":67,"props":1108,"children":1109},{},[1110,1114,1115],{"type":60,"tag":76,"props":1111,"children":1112},{},[1113],{"type":65,"value":166},{"type":65,"value":82},{"type":60,"tag":114,"props":1116,"children":1118},{"className":1117},[],[1119],{"type":65,"value":1120},"ZOHO_BOOKS_LIST_CONTACTS",{"type":60,"tag":67,"props":1122,"children":1123},{},[1124],{"type":65,"value":241},{"type":60,"tag":243,"props":1126,"children":1127},{},[1128,1137,1160,1178,1196,1207,1239,1249,1286],{"type":60,"tag":108,"props":1129,"children":1130},{},[1131,1136],{"type":60,"tag":114,"props":1132,"children":1134},{"className":1133},[],[1135],{"type":65,"value":156},{"type":65,"value":492},{"type":60,"tag":108,"props":1138,"children":1139},{},[1140,1146,1147,1153,1154],{"type":60,"tag":114,"props":1141,"children":1143},{"className":1142},[],[1144],{"type":65,"value":1145},"contact_type",{"type":65,"value":503},{"type":60,"tag":114,"props":1148,"children":1150},{"className":1149},[],[1151],{"type":65,"value":1152},"customer",{"type":65,"value":291},{"type":60,"tag":114,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":65,"value":1159},"vendor",{"type":60,"tag":108,"props":1161,"children":1162},{},[1163,1169,1170,1176],{"type":60,"tag":114,"props":1164,"children":1166},{"className":1165},[],[1167],{"type":65,"value":1168},"contact_name_contains",{"type":65,"value":354},{"type":60,"tag":114,"props":1171,"children":1173},{"className":1172},[],[1174],{"type":65,"value":1175},"contact_name_startswith",{"type":65,"value":1177}," -- name filters",{"type":60,"tag":108,"props":1179,"children":1180},{},[1181,1187,1188,1194],{"type":60,"tag":114,"props":1182,"children":1184},{"className":1183},[],[1185],{"type":65,"value":1186},"email_contains",{"type":65,"value":354},{"type":60,"tag":114,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":65,"value":1193},"email_startswith",{"type":65,"value":1195}," -- email filters",{"type":60,"tag":108,"props":1197,"children":1198},{},[1199,1205],{"type":60,"tag":114,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":65,"value":1204},"company_name_contains",{"type":65,"value":1206}," -- company name filter",{"type":60,"tag":108,"props":1208,"children":1209},{},[1210,1216,1218,1224,1225,1231,1232,1238],{"type":60,"tag":114,"props":1211,"children":1213},{"className":1212},[],[1214],{"type":65,"value":1215},"filter_by",{"type":65,"value":1217}," -- status filter: ",{"type":60,"tag":114,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":65,"value":1223},"Status.Active",{"type":65,"value":310},{"type":60,"tag":114,"props":1226,"children":1228},{"className":1227},[],[1229],{"type":65,"value":1230},"Status.Inactive",{"type":65,"value":310},{"type":60,"tag":114,"props":1233,"children":1235},{"className":1234},[],[1236],{"type":65,"value":1237},"Status.Duplicate",{"type":65,"value":655},{"type":60,"tag":108,"props":1240,"children":1241},{},[1242,1247],{"type":60,"tag":114,"props":1243,"children":1245},{"className":1244},[],[1246],{"type":65,"value":608},{"type":65,"value":1248}," -- search by contact name or notes (max 100 chars)",{"type":60,"tag":108,"props":1250,"children":1251},{},[1252,1257,1258,1264,1265,1271,1272,1278,1279,1285],{"type":60,"tag":114,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":65,"value":619},{"type":65,"value":628},{"type":60,"tag":114,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":65,"value":1263},"contact_name",{"type":65,"value":310},{"type":60,"tag":114,"props":1266,"children":1268},{"className":1267},[],[1269],{"type":65,"value":1270},"email",{"type":65,"value":310},{"type":60,"tag":114,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":65,"value":1277},"outstanding_receivable_amount",{"type":65,"value":310},{"type":60,"tag":114,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":65,"value":1284},"created_time",{"type":65,"value":655},{"type":60,"tag":108,"props":1287,"children":1288},{},[1289,1294,1295,1300],{"type":60,"tag":114,"props":1290,"children":1292},{"className":1291},[],[1293],{"type":65,"value":664},{"type":65,"value":354},{"type":60,"tag":114,"props":1296,"children":1298},{"className":1297},[],[1299],{"type":65,"value":671},{"type":65,"value":1010},{"type":60,"tag":67,"props":1302,"children":1303},{},[1304],{"type":65,"value":199},{"type":60,"tag":180,"props":1306,"children":1307},{},[1308],{"type":60,"tag":67,"props":1309,"children":1310},{},[1311],{"type":65,"value":1312},"\"Find all active customers whose company name contains 'Acme'\"",{"type":60,"tag":93,"props":1314,"children":1315},{},[],{"type":60,"tag":140,"props":1317,"children":1319},{"id":1318},"_5-track-invoice-payments",[1320],{"type":65,"value":1321},"5. Track Invoice Payments",{"type":60,"tag":67,"props":1323,"children":1324},{},[1325],{"type":65,"value":1326},"List all payments recorded against a specific invoice.",{"type":60,"tag":67,"props":1328,"children":1329},{},[1330,1334,1335],{"type":60,"tag":76,"props":1331,"children":1332},{},[1333],{"type":65,"value":166},{"type":65,"value":82},{"type":60,"tag":114,"props":1336,"children":1338},{"className":1337},[],[1339],{"type":65,"value":1340},"ZOHO_BOOKS_LIST_INVOICE_PAYMENTS",{"type":60,"tag":67,"props":1342,"children":1343},{},[1344],{"type":65,"value":241},{"type":60,"tag":243,"props":1346,"children":1347},{},[1348,1358],{"type":60,"tag":108,"props":1349,"children":1350},{},[1351,1356],{"type":60,"tag":114,"props":1352,"children":1354},{"className":1353},[],[1355],{"type":65,"value":696},{"type":65,"value":1357}," -- the invoice to check (required)",{"type":60,"tag":108,"props":1359,"children":1360},{},[1361,1366],{"type":60,"tag":114,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":65,"value":156},{"type":65,"value":1367}," -- the organization (required)",{"type":60,"tag":67,"props":1369,"children":1370},{},[1371],{"type":65,"value":1372},"Returns all payment transactions applied to the invoice including amounts, dates, and payment methods.",{"type":60,"tag":67,"props":1374,"children":1375},{},[1376],{"type":65,"value":199},{"type":60,"tag":180,"props":1378,"children":1379},{},[1380],{"type":60,"tag":67,"props":1381,"children":1382},{},[1383],{"type":65,"value":1384},"\"Show all payments recorded against invoice 451025000000123045\"",{"type":60,"tag":93,"props":1386,"children":1387},{},[],{"type":60,"tag":140,"props":1389,"children":1391},{"id":1390},"_6-full-invoicing-workflow",[1392],{"type":65,"value":1393},"6. Full Invoicing Workflow",{"type":60,"tag":67,"props":1395,"children":1396},{},[1397],{"type":65,"value":1398},"Combine tools for end-to-end invoice management:",{"type":60,"tag":104,"props":1400,"children":1401},{},[1402,1424,1445,1461,1477,1493],{"type":60,"tag":108,"props":1403,"children":1404},{},[1405,1410,1412,1417,1419],{"type":60,"tag":76,"props":1406,"children":1407},{},[1408],{"type":65,"value":1409},"Organization",{"type":65,"value":1411},": ",{"type":60,"tag":114,"props":1413,"children":1415},{"className":1414},[],[1416],{"type":65,"value":173},{"type":65,"value":1418}," -- get ",{"type":60,"tag":114,"props":1420,"children":1422},{"className":1421},[],[1423],{"type":65,"value":156},{"type":60,"tag":108,"props":1425,"children":1426},{},[1427,1432,1433,1438,1440],{"type":60,"tag":76,"props":1428,"children":1429},{},[1430],{"type":65,"value":1431},"Contacts",{"type":65,"value":1411},{"type":60,"tag":114,"props":1434,"children":1436},{"className":1435},[],[1437],{"type":65,"value":1120},{"type":65,"value":1439}," -- find or verify ",{"type":60,"tag":114,"props":1441,"children":1443},{"className":1442},[],[1444],{"type":65,"value":264},{"type":60,"tag":108,"props":1446,"children":1447},{},[1448,1453,1454,1459],{"type":60,"tag":76,"props":1449,"children":1450},{},[1451],{"type":65,"value":1452},"Create",{"type":65,"value":1411},{"type":60,"tag":114,"props":1455,"children":1457},{"className":1456},[],[1458],{"type":65,"value":236},{"type":65,"value":1460}," -- create invoice with line items",{"type":60,"tag":108,"props":1462,"children":1463},{},[1464,1469,1470,1475],{"type":60,"tag":76,"props":1465,"children":1466},{},[1467],{"type":65,"value":1468},"Review",{"type":65,"value":1411},{"type":60,"tag":114,"props":1471,"children":1473},{"className":1472},[],[1474],{"type":65,"value":688},{"type":65,"value":1476}," -- fetch invoice details or PDF",{"type":60,"tag":108,"props":1478,"children":1479},{},[1480,1485,1486,1491],{"type":60,"tag":76,"props":1481,"children":1482},{},[1483],{"type":65,"value":1484},"Track",{"type":65,"value":1411},{"type":60,"tag":114,"props":1487,"children":1489},{"className":1488},[],[1490],{"type":65,"value":1340},{"type":65,"value":1492}," -- monitor payment status",{"type":60,"tag":108,"props":1494,"children":1495},{},[1496,1501,1502,1507],{"type":60,"tag":76,"props":1497,"children":1498},{},[1499],{"type":65,"value":1500},"Export",{"type":65,"value":1411},{"type":60,"tag":114,"props":1503,"children":1505},{"className":1504},[],[1506],{"type":65,"value":764},{"type":65,"value":1508}," -- batch export for records",{"type":60,"tag":67,"props":1510,"children":1511},{},[1512],{"type":65,"value":199},{"type":60,"tag":180,"props":1514,"children":1515},{},[1516],{"type":60,"tag":67,"props":1517,"children":1518},{},[1519],{"type":65,"value":1520},"\"Find the customer ID for 'Acme Corp', create an invoice for them with consulting services, and then get the PDF\"",{"type":60,"tag":93,"props":1522,"children":1523},{},[],{"type":60,"tag":97,"props":1525,"children":1527},{"id":1526},"known-pitfalls",[1528],{"type":65,"value":1529},"Known Pitfalls",{"type":60,"tag":1531,"props":1532,"children":1533},"table",{},[1534,1553],{"type":60,"tag":1535,"props":1536,"children":1537},"thead",{},[1538],{"type":60,"tag":1539,"props":1540,"children":1541},"tr",{},[1542,1548],{"type":60,"tag":1543,"props":1544,"children":1545},"th",{},[1546],{"type":65,"value":1547},"Pitfall",{"type":60,"tag":1543,"props":1549,"children":1550},{},[1551],{"type":65,"value":1552},"Details",{"type":60,"tag":1554,"props":1555,"children":1556},"tbody",{},[1557,1585,1614,1648,1674,1687,1731,1750],{"type":60,"tag":1539,"props":1558,"children":1559},{},[1560,1566],{"type":60,"tag":1561,"props":1562,"children":1563},"td",{},[1564],{"type":65,"value":1565},"Organization ID always required",{"type":60,"tag":1561,"props":1567,"children":1568},{},[1569,1571,1576,1578,1583],{"type":65,"value":1570},"Nearly every endpoint requires ",{"type":60,"tag":114,"props":1572,"children":1574},{"className":1573},[],[1575],{"type":65,"value":156},{"type":65,"value":1577}," -- always call ",{"type":60,"tag":114,"props":1579,"children":1581},{"className":1580},[],[1582],{"type":65,"value":173},{"type":65,"value":1584}," first",{"type":60,"tag":1539,"props":1586,"children":1587},{},[1588,1593],{"type":60,"tag":1561,"props":1589,"children":1590},{},[1591],{"type":65,"value":1592},"Line items required for invoices",{"type":60,"tag":1561,"props":1594,"children":1595},{},[1596,1601,1603,1608,1609],{"type":60,"tag":114,"props":1597,"children":1599},{"className":1598},[],[1600],{"type":65,"value":236},{"type":65,"value":1602}," requires at least one line item with either ",{"type":60,"tag":114,"props":1604,"children":1606},{"className":1605},[],[1607],{"type":65,"value":289},{"type":65,"value":291},{"type":60,"tag":114,"props":1610,"children":1612},{"className":1611},[],[1613],{"type":65,"value":297},{"type":60,"tag":1539,"props":1615,"children":1616},{},[1617,1622],{"type":60,"tag":1561,"props":1618,"children":1619},{},[1620],{"type":65,"value":1621},"Invoice ID format",{"type":60,"tag":1561,"props":1623,"children":1624},{},[1625,1627,1632,1634,1640,1642],{"type":65,"value":1626},"Use the numeric ",{"type":60,"tag":114,"props":1628,"children":1630},{"className":1629},[],[1631],{"type":65,"value":696},{"type":65,"value":1633}," from the invoice object (e.g., ",{"type":60,"tag":114,"props":1635,"children":1637},{"className":1636},[],[1638],{"type":65,"value":1639},"7472322000000264123",{"type":65,"value":1641},"), not the encoded ID from ",{"type":60,"tag":114,"props":1643,"children":1645},{"className":1644},[],[1646],{"type":65,"value":1647},"invoice_url",{"type":60,"tag":1539,"props":1649,"children":1650},{},[1651,1656],{"type":60,"tag":1561,"props":1652,"children":1653},{},[1654],{"type":65,"value":1655},"Bulk limits",{"type":60,"tag":1561,"props":1657,"children":1658},{},[1659,1661,1666,1667,1672],{"type":65,"value":1660},"Both ",{"type":60,"tag":114,"props":1662,"children":1664},{"className":1663},[],[1665],{"type":65,"value":764},{"type":65,"value":1034},{"type":60,"tag":114,"props":1668,"children":1670},{"className":1669},[],[1671],{"type":65,"value":781},{"type":65,"value":1673}," accept a maximum of 25 invoice IDs",{"type":60,"tag":1539,"props":1675,"children":1676},{},[1677,1682],{"type":60,"tag":1561,"props":1678,"children":1679},{},[1680],{"type":65,"value":1681},"Pagination max 200",{"type":60,"tag":1561,"props":1683,"children":1684},{},[1685],{"type":65,"value":1686},"All list endpoints cap at 200 records per page -- iterate pages for complete results",{"type":60,"tag":1539,"props":1688,"children":1689},{},[1690,1695],{"type":60,"tag":1561,"props":1691,"children":1692},{},[1693],{"type":65,"value":1694},"Bill update requires all fields",{"type":60,"tag":1561,"props":1696,"children":1697},{},[1698,1703,1705,1710,1711,1716,1717,1722,1724,1729],{"type":60,"tag":114,"props":1699,"children":1701},{"className":1700},[],[1702],{"type":65,"value":1054},{"type":65,"value":1704}," requires ",{"type":60,"tag":114,"props":1706,"children":1708},{"className":1707},[],[1709],{"type":65,"value":1032},{"type":65,"value":310},{"type":60,"tag":114,"props":1712,"children":1714},{"className":1713},[],[1715],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":1718,"children":1720},{"className":1719},[],[1721],{"type":65,"value":887},{"type":65,"value":1723},", and ",{"type":60,"tag":114,"props":1725,"children":1727},{"className":1726},[],[1728],{"type":65,"value":905},{"type":65,"value":1730}," even for partial updates",{"type":60,"tag":1539,"props":1732,"children":1733},{},[1734,1739],{"type":60,"tag":1561,"props":1735,"children":1736},{},[1737],{"type":65,"value":1738},"Date format",{"type":60,"tag":1561,"props":1740,"children":1741},{},[1742,1744,1749],{"type":65,"value":1743},"All date parameters use ",{"type":60,"tag":114,"props":1745,"children":1747},{"className":1746},[],[1748],{"type":65,"value":368},{"type":65,"value":370},{"type":60,"tag":1539,"props":1751,"children":1752},{},[1753,1758],{"type":60,"tag":1561,"props":1754,"children":1755},{},[1756],{"type":65,"value":1757},"response_option undocumented",{"type":60,"tag":1561,"props":1759,"children":1760},{},[1761,1766,1768,1774],{"type":60,"tag":114,"props":1762,"children":1764},{"className":1763},[],[1765],{"type":65,"value":475},{"type":65,"value":1767}," has an undocumented ",{"type":60,"tag":114,"props":1769,"children":1771},{"className":1770},[],[1772],{"type":65,"value":1773},"response_option",{"type":65,"value":1775}," parameter (0=full, 1=full+totals, 2=counts only) that may change without notice",{"type":60,"tag":93,"props":1777,"children":1778},{},[],{"type":60,"tag":97,"props":1780,"children":1782},{"id":1781},"quick-reference",[1783],{"type":65,"value":1784},"Quick Reference",{"type":60,"tag":1531,"props":1786,"children":1787},{},[1788,1809],{"type":60,"tag":1535,"props":1789,"children":1790},{},[1791],{"type":60,"tag":1539,"props":1792,"children":1793},{},[1794,1799,1804],{"type":60,"tag":1543,"props":1795,"children":1796},{},[1797],{"type":65,"value":1798},"Action",{"type":60,"tag":1543,"props":1800,"children":1801},{},[1802],{"type":65,"value":1803},"Tool Slug",{"type":60,"tag":1543,"props":1805,"children":1806},{},[1807],{"type":65,"value":1808},"Key Params",{"type":60,"tag":1554,"props":1810,"children":1811},{},[1812,1833,1869,1905,1941,1971,2002,2032,2068,2098,2134,2170],{"type":60,"tag":1539,"props":1813,"children":1814},{},[1815,1820,1828],{"type":60,"tag":1561,"props":1816,"children":1817},{},[1818],{"type":65,"value":1819},"List organizations",{"type":60,"tag":1561,"props":1821,"children":1822},{},[1823],{"type":60,"tag":114,"props":1824,"children":1826},{"className":1825},[],[1827],{"type":65,"value":173},{"type":60,"tag":1561,"props":1829,"children":1830},{},[1831],{"type":65,"value":1832},"(none)",{"type":60,"tag":1539,"props":1834,"children":1835},{},[1836,1841,1849],{"type":60,"tag":1561,"props":1837,"children":1838},{},[1839],{"type":65,"value":1840},"Create invoice",{"type":60,"tag":1561,"props":1842,"children":1843},{},[1844],{"type":60,"tag":114,"props":1845,"children":1847},{"className":1846},[],[1848],{"type":65,"value":236},{"type":60,"tag":1561,"props":1850,"children":1851},{},[1852,1857,1858,1863,1864],{"type":60,"tag":114,"props":1853,"children":1855},{"className":1854},[],[1856],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":1859,"children":1861},{"className":1860},[],[1862],{"type":65,"value":264},{"type":65,"value":310},{"type":60,"tag":114,"props":1865,"children":1867},{"className":1866},[],[1868],{"type":65,"value":275},{"type":60,"tag":1539,"props":1870,"children":1871},{},[1872,1877,1885],{"type":60,"tag":1561,"props":1873,"children":1874},{},[1875],{"type":65,"value":1876},"List invoices",{"type":60,"tag":1561,"props":1878,"children":1879},{},[1880],{"type":60,"tag":114,"props":1881,"children":1883},{"className":1882},[],[1884],{"type":65,"value":475},{"type":60,"tag":1561,"props":1886,"children":1887},{},[1888,1893,1894,1899,1900],{"type":60,"tag":114,"props":1889,"children":1891},{"className":1890},[],[1892],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":1895,"children":1897},{"className":1896},[],[1898],{"type":65,"value":501},{"type":65,"value":310},{"type":60,"tag":114,"props":1901,"children":1903},{"className":1902},[],[1904],{"type":65,"value":584},{"type":60,"tag":1539,"props":1906,"children":1907},{},[1908,1913,1921],{"type":60,"tag":1561,"props":1909,"children":1910},{},[1911],{"type":65,"value":1912},"Get invoice",{"type":60,"tag":1561,"props":1914,"children":1915},{},[1916],{"type":60,"tag":114,"props":1917,"children":1919},{"className":1918},[],[1920],{"type":65,"value":688},{"type":60,"tag":1561,"props":1922,"children":1923},{},[1924,1929,1930,1935,1936],{"type":60,"tag":114,"props":1925,"children":1927},{"className":1926},[],[1928],{"type":65,"value":696},{"type":65,"value":310},{"type":60,"tag":114,"props":1931,"children":1933},{"className":1932},[],[1934],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":1937,"children":1939},{"className":1938},[],[1940],{"type":65,"value":704},{"type":60,"tag":1539,"props":1942,"children":1943},{},[1944,1949,1957],{"type":60,"tag":1561,"props":1945,"children":1946},{},[1947],{"type":65,"value":1948},"Delete invoice",{"type":60,"tag":1561,"props":1950,"children":1951},{},[1952],{"type":60,"tag":114,"props":1953,"children":1955},{"className":1954},[],[1956],{"type":65,"value":742},{"type":60,"tag":1561,"props":1958,"children":1959},{},[1960,1965,1966],{"type":60,"tag":114,"props":1961,"children":1963},{"className":1962},[],[1964],{"type":65,"value":696},{"type":65,"value":310},{"type":60,"tag":114,"props":1967,"children":1969},{"className":1968},[],[1970],{"type":65,"value":156},{"type":60,"tag":1539,"props":1972,"children":1973},{},[1974,1979,1987],{"type":60,"tag":1561,"props":1975,"children":1976},{},[1977],{"type":65,"value":1978},"Bulk export PDF",{"type":60,"tag":1561,"props":1980,"children":1981},{},[1982],{"type":60,"tag":114,"props":1983,"children":1985},{"className":1984},[],[1986],{"type":65,"value":764},{"type":60,"tag":1561,"props":1988,"children":1989},{},[1990,1995,1996],{"type":60,"tag":114,"props":1991,"children":1993},{"className":1992},[],[1994],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":1997,"children":1999},{"className":1998},[],[2000],{"type":65,"value":2001},"invoice_ids",{"type":60,"tag":1539,"props":2003,"children":2004},{},[2005,2010,2018],{"type":60,"tag":1561,"props":2006,"children":2007},{},[2008],{"type":65,"value":2009},"Bulk print",{"type":60,"tag":1561,"props":2011,"children":2012},{},[2013],{"type":60,"tag":114,"props":2014,"children":2016},{"className":2015},[],[2017],{"type":65,"value":781},{"type":60,"tag":1561,"props":2019,"children":2020},{},[2021,2026,2027],{"type":60,"tag":114,"props":2022,"children":2024},{"className":2023},[],[2025],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":2028,"children":2030},{"className":2029},[],[2031],{"type":65,"value":2001},{"type":60,"tag":1539,"props":2033,"children":2034},{},[2035,2040,2048],{"type":60,"tag":1561,"props":2036,"children":2037},{},[2038],{"type":65,"value":2039},"List bills",{"type":60,"tag":1561,"props":2041,"children":2042},{},[2043],{"type":60,"tag":114,"props":2044,"children":2046},{"className":2045},[],[2047],{"type":65,"value":823},{"type":60,"tag":1561,"props":2049,"children":2050},{},[2051,2056,2057,2062,2063],{"type":60,"tag":114,"props":2052,"children":2054},{"className":2053},[],[2055],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":2058,"children":2060},{"className":2059},[],[2061],{"type":65,"value":501},{"type":65,"value":310},{"type":60,"tag":114,"props":2064,"children":2066},{"className":2065},[],[2067],{"type":65,"value":887},{"type":60,"tag":1539,"props":2069,"children":2070},{},[2071,2076,2084],{"type":60,"tag":1561,"props":2072,"children":2073},{},[2074],{"type":65,"value":2075},"Get bill",{"type":60,"tag":1561,"props":2077,"children":2078},{},[2079],{"type":60,"tag":114,"props":2080,"children":2082},{"className":2081},[],[2083],{"type":65,"value":1024},{"type":60,"tag":1561,"props":2085,"children":2086},{},[2087,2092,2093],{"type":60,"tag":114,"props":2088,"children":2090},{"className":2089},[],[2091],{"type":65,"value":1032},{"type":65,"value":310},{"type":60,"tag":114,"props":2094,"children":2096},{"className":2095},[],[2097],{"type":65,"value":156},{"type":60,"tag":1539,"props":2099,"children":2100},{},[2101,2106,2114],{"type":60,"tag":1561,"props":2102,"children":2103},{},[2104],{"type":65,"value":2105},"Update bill",{"type":60,"tag":1561,"props":2107,"children":2108},{},[2109],{"type":60,"tag":114,"props":2110,"children":2112},{"className":2111},[],[2113],{"type":65,"value":1054},{"type":60,"tag":1561,"props":2115,"children":2116},{},[2117,2122,2123,2128,2129],{"type":60,"tag":114,"props":2118,"children":2120},{"className":2119},[],[2121],{"type":65,"value":1032},{"type":65,"value":310},{"type":60,"tag":114,"props":2124,"children":2126},{"className":2125},[],[2127],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":2130,"children":2132},{"className":2131},[],[2133],{"type":65,"value":887},{"type":60,"tag":1539,"props":2135,"children":2136},{},[2137,2142,2150],{"type":60,"tag":1561,"props":2138,"children":2139},{},[2140],{"type":65,"value":2141},"List contacts",{"type":60,"tag":1561,"props":2143,"children":2144},{},[2145],{"type":60,"tag":114,"props":2146,"children":2148},{"className":2147},[],[2149],{"type":65,"value":1120},{"type":60,"tag":1561,"props":2151,"children":2152},{},[2153,2158,2159,2164,2165],{"type":60,"tag":114,"props":2154,"children":2156},{"className":2155},[],[2157],{"type":65,"value":156},{"type":65,"value":310},{"type":60,"tag":114,"props":2160,"children":2162},{"className":2161},[],[2163],{"type":65,"value":1145},{"type":65,"value":310},{"type":60,"tag":114,"props":2166,"children":2168},{"className":2167},[],[2169],{"type":65,"value":608},{"type":60,"tag":1539,"props":2171,"children":2172},{},[2173,2178,2186],{"type":60,"tag":1561,"props":2174,"children":2175},{},[2176],{"type":65,"value":2177},"List payments",{"type":60,"tag":1561,"props":2179,"children":2180},{},[2181],{"type":60,"tag":114,"props":2182,"children":2184},{"className":2183},[],[2185],{"type":65,"value":1340},{"type":60,"tag":1561,"props":2187,"children":2188},{},[2189,2194,2195],{"type":60,"tag":114,"props":2190,"children":2192},{"className":2191},[],[2193],{"type":65,"value":696},{"type":65,"value":310},{"type":60,"tag":114,"props":2196,"children":2198},{"className":2197},[],[2199],{"type":65,"value":156},{"type":60,"tag":93,"props":2201,"children":2202},{},[],{"type":60,"tag":67,"props":2204,"children":2205},{},[2206],{"type":60,"tag":2207,"props":2208,"children":2209},"em",{},[2210,2212],{"type":65,"value":2211},"Powered by ",{"type":60,"tag":84,"props":2213,"children":2216},{"href":2214,"rel":2215},"https:\u002F\u002Fcomposio.dev",[88],[2217],{"type":65,"value":10},{"items":2219,"total":2363},[2220,2234,2250,2259,2269,2281,2290,2303,2317,2330,2343,2353],{"slug":2221,"name":2222,"fn":2223,"description":2224,"org":2225,"tags":2226,"stars":27,"repoUrl":28,"updatedAt":2233},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2227,2228,2229,2230],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},{"name":2231,"slug":2232,"type":17},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":2235,"name":2236,"fn":2237,"description":2238,"org":2239,"tags":2240,"stars":27,"repoUrl":28,"updatedAt":2249},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2241,2242,2245,2246],{"name":15,"slug":16,"type":17},{"name":2243,"slug":2244,"type":17},"Communications","communications",{"name":22,"slug":23,"type":17},{"name":2247,"slug":2248,"type":17},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":2251,"name":2251,"fn":2252,"description":2253,"org":2254,"tags":2255,"stars":27,"repoUrl":28,"updatedAt":2258},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2256,2257],{"name":15,"slug":16,"type":17},{"name":22,"slug":23,"type":17},"2026-07-12T08:09:55.453088",{"slug":2260,"name":2260,"fn":2261,"description":2262,"org":2263,"tags":2264,"stars":27,"repoUrl":28,"updatedAt":2268},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2265,2266,2267],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},"2026-07-15T05:45:16.470309",{"slug":2270,"name":2270,"fn":2271,"description":2272,"org":2273,"tags":2274,"stars":27,"repoUrl":28,"updatedAt":2280},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2275,2276,2277],{"name":15,"slug":16,"type":17},{"name":22,"slug":23,"type":17},{"name":2278,"slug":2279,"type":17},"Security","security","2026-07-15T05:56:20.013366",{"slug":2282,"name":2282,"fn":2283,"description":2284,"org":2285,"tags":2286,"stars":27,"repoUrl":28,"updatedAt":2289},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2287,2288],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},"2026-07-15T05:54:50.762889",{"slug":2291,"name":2291,"fn":2292,"description":2293,"org":2294,"tags":2295,"stars":27,"repoUrl":28,"updatedAt":2302},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2296,2297,2298,2301],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":2299,"slug":2300,"type":17},"CRM","crm",{"name":22,"slug":23,"type":17},"2026-07-15T05:48:43.429136",{"slug":2304,"name":2304,"fn":2305,"description":2306,"org":2307,"tags":2308,"stars":27,"repoUrl":28,"updatedAt":2316},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2309,2310,2313],{"name":15,"slug":16,"type":17},{"name":2311,"slug":2312,"type":17},"Documents","documents",{"name":2314,"slug":2315,"type":17},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":2318,"name":2318,"fn":2319,"description":2320,"org":2321,"tags":2322,"stars":27,"repoUrl":28,"updatedAt":2329},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2323,2324,2325,2326],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},{"name":2327,"slug":2328,"type":17},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":2331,"name":2331,"fn":2332,"description":2333,"org":2334,"tags":2335,"stars":27,"repoUrl":28,"updatedAt":2342},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2336,2337,2338,2339],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":2299,"slug":2300,"type":17},{"name":2340,"slug":2341,"type":17},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":2344,"name":2344,"fn":2345,"description":2346,"org":2347,"tags":2348,"stars":27,"repoUrl":28,"updatedAt":2352},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2349,2350,2351],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},"2026-07-15T05:47:51.742515",{"slug":2354,"name":2354,"fn":2355,"description":2356,"org":2357,"tags":2358,"stars":27,"repoUrl":28,"updatedAt":2362},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2359,2360,2361],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},"2026-07-15T05:45:05.303254",863,{"items":2365,"total":2409},[2366,2373,2380,2385,2391,2397,2402],{"slug":2221,"name":2222,"fn":2223,"description":2224,"org":2367,"tags":2368,"stars":27,"repoUrl":28,"updatedAt":2233},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2369,2370,2371,2372],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},{"name":2231,"slug":2232,"type":17},{"slug":2235,"name":2236,"fn":2237,"description":2238,"org":2374,"tags":2375,"stars":27,"repoUrl":28,"updatedAt":2249},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2376,2377,2378,2379],{"name":15,"slug":16,"type":17},{"name":2243,"slug":2244,"type":17},{"name":22,"slug":23,"type":17},{"name":2247,"slug":2248,"type":17},{"slug":2251,"name":2251,"fn":2252,"description":2253,"org":2381,"tags":2382,"stars":27,"repoUrl":28,"updatedAt":2258},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2383,2384],{"name":15,"slug":16,"type":17},{"name":22,"slug":23,"type":17},{"slug":2260,"name":2260,"fn":2261,"description":2262,"org":2386,"tags":2387,"stars":27,"repoUrl":28,"updatedAt":2268},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2388,2389,2390],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":22,"slug":23,"type":17},{"slug":2270,"name":2270,"fn":2271,"description":2272,"org":2392,"tags":2393,"stars":27,"repoUrl":28,"updatedAt":2280},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2394,2395,2396],{"name":15,"slug":16,"type":17},{"name":22,"slug":23,"type":17},{"name":2278,"slug":2279,"type":17},{"slug":2282,"name":2282,"fn":2283,"description":2284,"org":2398,"tags":2399,"stars":27,"repoUrl":28,"updatedAt":2289},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2400,2401],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"slug":2291,"name":2291,"fn":2292,"description":2293,"org":2403,"tags":2404,"stars":27,"repoUrl":28,"updatedAt":2302},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2405,2406,2407,2408],{"name":15,"slug":16,"type":17},{"name":10,"slug":9,"type":17},{"name":2299,"slug":2300,"type":17},{"name":22,"slug":23,"type":17},860]