Autotask Billing
Overview
Autotask billing tools give MSPs visibility into billable items, approval workflows, and invoices generated from time entries, charges, and contracts. Finance teams use these tools to review, approve, and export billing data.
Anti-triggers
Billing items are derived records. When the question is about what produced one:
- The hours behind it — use
autotask-time-entries. - A charge posted straight onto a ticket — ticket charges are a
separate entity with their own approval path; use
autotask-ticket-notes-attachments. - A technician's out-of-pocket cost — use
autotask-expenses. - Why the client is billed a recurring amount at all — the
agreement drives it; use
autotask-contracts. - Cost the MSP owes rather than revenue it charges — distributor
and CSP invoices run in the opposite direction and never appear in
Autotask; use
pax8-invoicesorsherweb-billing. - The invoice as the accounting system holds it — Autotask billing
items are the source for an invoice, not the posted ledger entry; use
qbo-invoicesorxero-invoices.
API Patterns
Get a Billing Item
Retrieve a single billing item by ID.
Tool: autotask_get_billing_item
Key fields returned:
id— Billing item IDticketID/projectID— Source entityresourceID— Who performed the workbillingItemType— Type (time entry, expense, charge, etc.)approvalStatus— Current approval stateamount— Billable amount
Search Billing Items
Tool: autotask_search_billing_items
Key parameters:
companyId— Filter by client companyinvoiceId— Filter by invoiceapprovalStatus— Filter by approval statestartDate/endDate— Date range filterpage/pageSize— Pagination (default 25, max 200)
Search Billing Approval Levels
Tool: autotask_search_billing_item_approval_levels
Returns the configured approval workflow steps for billing items in your Autotask instance. Approval levels are instance-specific.
Search Invoices
Tool: autotask_search_invoices
Key parameters:
companyId— Filter by client companystartDate/endDate— Invoice date rangepage/pageSize— Pagination
Common Workflows
Month-End Billing Review
- Use
autotask_search_billing_itemsfiltered by date range and company - Review items with pending approval status
- Check associated tickets/projects for context
- Export approved items for invoice generation
Invoice Reconciliation
- Use
autotask_search_invoicesto find invoices for a client - Cross-reference with
autotask_search_billing_itemsfiltered by invoice ID - Verify all expected charges appear
- Identify any missing or duplicate items
Approval Workflow Inspection
- Use
autotask_search_billing_item_approval_levelsto understand configured steps - Use
autotask_search_billing_itemsfiltered byapprovalStatusto find items pending each step
Notes
- Billing item types are instance-specific picklist values; use
autotask_get_field_infowith entityBillingItemsto retrieve valid values for your instance - Approval workflows vary per Autotask configuration — consult your instance settings
- Invoices are typically generated from approved billing items; unapproved items will not appear on invoices
- This area is read-only via MCP; creating or posting invoices must be done through the Autotask UI or billing integrations