Developer docs

Altoviz integration

Altoviz is a cloud-based billing and invoicing platform for businesses,…

Updated June 2026 67 actions available

Provider
altoviz
Category
Other
Setup
User-supplied API key
Actions
67 available

Quick start

Call Altoviz from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Altoviz's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "ALTOVIZ_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Altoviz API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

67 actions exposed via the Altoviz integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 67 actions
  • ALTOVIZ_DELETE_PRODUCT_FAMILY
  • ALTOVIZ_DELETE_RECEIPT
  • ALTOVIZ_DELETE_SALE_CREDIT
  • ALTOVIZ_DELETE_SALE_INVOICE
  • ALTOVIZ_DELETE_SALE_QUOTE
  • ALTOVIZ_DELETE_SUPPLIER
  • ALTOVIZ_DOWNLOAD_PURCHASE_INVOICE
  • ALTOVIZ_DOWNLOAD_SALE_CREDIT
  • ALTOVIZ_DOWNLOAD_SALE_INVOICE
  • ALTOVIZ_FIND_CONTACT
  • ALTOVIZ_FIND_CUSTOMER
  • ALTOVIZ_FIND_PRODUCT
  • ALTOVIZ_FIND_PRODUCT_BY_NUMBER_OR_ID
  • ALTOVIZ_FIND_RECEIPT
  • ALTOVIZ_FIND_SALE_CREDIT
  • ALTOVIZ_FIND_SALE_INVOICE
  • ALTOVIZ_FIND_SALE_QUOTE
  • ALTOVIZ_GET_CLASSIFICATIONS
  • ALTOVIZ_GET_COLLEAGUE
  • ALTOVIZ_GET_CONTACT
  • ALTOVIZ_GET_CURRENT_USER
  • ALTOVIZ_GET_CUSTOMER
  • ALTOVIZ_GET_CUSTOMER_BY_INTERNAL_ID
  • ALTOVIZ_GET_CUSTOMER_CONTACTS
  • ALTOVIZ_GET_CUSTOMER_FAMILY
  • ALTOVIZ_GET_PRODUCT
  • ALTOVIZ_GET_PRODUCT_FAMILY
  • ALTOVIZ_GET_RECEIPT
  • ALTOVIZ_GET_SALE_CREDIT
  • ALTOVIZ_GET_SALE_INVOICE
  • ALTOVIZ_GET_SETTINGS
  • ALTOVIZ_GET_SUPPLIER
  • ALTOVIZ_GET_SUPPLIER_CONTACTS
  • ALTOVIZ_GET_UNITS
  • ALTOVIZ_GET_VATS
  • ALTOVIZ_LIST_COLLEAGUES
  • ALTOVIZ_LIST_CONTACTS
  • ALTOVIZ_LIST_CUSTOMER_FAMILIES
  • ALTOVIZ_LIST_CUSTOMERS
  • ALTOVIZ_LIST_PRODUCT_FAMILIES
  • ALTOVIZ_LIST_RECEIPTS
  • ALTOVIZ_LIST_SALE_CREDITS
  • ALTOVIZ_LIST_SALE_INVOICES
  • ALTOVIZ_LIST_SALE_QUOTES
  • ALTOVIZ_LIST_SUPPLIERS
  • ALTOVIZ_LIST_WEBHOOKS
  • ALTOVIZ_REGISTER_WEBHOOK
  • ALTOVIZ_TEST_API_KEY
  • ALTOVIZ_UNREGISTER_WEBHOOK
  • ALTOVIZ_UPDATE_COLLEAGUE
  • ALTOVIZ_UPDATE_CUSTOMER
  • ALTOVIZ_UPDATE_RECEIPT
  • ALTOVIZ_UPDATE_SALE_CREDIT
  • ALTOVIZ_UPDATE_SUPPLIER
  • ALTOVIZ_UPLOAD_PURCHASE_INVOICE

Build with Altoviz

Open OverSkill, describe what you want to build, and reference Altoviz in your prompt — the AI will wire up the integration automatically.