{
  "info": {
    "name": "Zoho Invoice — mcp.ai",
    "description": "REST API for the Zoho Invoice MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/zoho_invoice",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "zoho_invoice_get_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "item"
          ]
        },
        "description": "Tool to retrieve the details of a specific item by item id. use when you need to fetch an item's data after confirming its existence.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"item_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_invoice_list_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contacts"
          ]
        },
        "description": "Tool to list contacts. use after obtaining the organization id to retrieve contacts with optional filters and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"address\": \"\",\n  \"per_page\": 0,\n  \"filter_by\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"search_text\": \"\",\n  \"sort_column\": \"\",\n  \"company_name\": \"\",\n  \"contact_name\": \"\",\n  \"email_contains\": \"\",\n  \"phone_contains\": \"\",\n  \"organization_id\": \"\",\n  \"zcrm_account_id\": \"\",\n  \"zcrm_contact_id\": \"\",\n  \"address_contains\": \"\",\n  \"email_startswith\": \"\",\n  \"phone_startswith\": \"\",\n  \"address_startswith\": \"\",\n  \"last_name_contains\": \"\",\n  \"first_name_contains\": \"\",\n  \"last_name_startswith\": \"\",\n  \"company_name_contains\": \"\",\n  \"contact_name_contains\": \"\",\n  \"first_name_startswith\": \"\",\n  \"company_name_startswith\": \"\",\n  \"contact_name_startswith\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_invoice_list_expenses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/expenses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "expenses"
          ]
        },
        "description": "Tool to list all expenses with optional pagination. use when you need to retrieve expenses with simple pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_invoice_list_invoices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/invoices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "invoices"
          ]
        },
        "description": "Tool to list invoices. use when you need to retrieve all invoices with optional filters and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"page\": 0,\n  \"email\": \"\",\n  \"total\": 0,\n  \"status\": \"\",\n  \"balance\": 0,\n  \"item_id\": \"\",\n  \"date_end\": \"\",\n  \"due_date\": \"\",\n  \"per_page\": 0,\n  \"filter_by\": \"\",\n  \"item_name\": \"\",\n  \"date_after\": \"\",\n  \"date_start\": \"\",\n  \"customer_id\": \"\",\n  \"date_before\": \"\",\n  \"search_text\": \"\",\n  \"sort_column\": \"\",\n  \"custom_field\": \"\",\n  \"due_date_end\": \"\",\n  \"customer_name\": \"\",\n  \"due_date_after\": \"\",\n  \"due_date_start\": \"\",\n  \"invoice_number\": \"\",\n  \"due_date_before\": \"\",\n  \"item_description\": \"\",\n  \"reference_number\": \"\",\n  \"zcrm_potential_id\": \"\",\n  \"item_name_contains\": \"\",\n  \"item_name_startswith\": \"\",\n  \"recurring_invoice_id\": \"\",\n  \"custom_field_contains\": \"\",\n  \"custom_field_startswith\": \"\",\n  \"item_description_contains\": \"\",\n  \"item_description_startswith\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_invoice_list_items",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/items",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "items"
          ]
        },
        "description": "Tool to list all items. use when you need to retrieve your item catalog with optional pagination and filtering after specifying the organization id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"filter_by\": \"\",\n  \"search_text\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_invoice_list_payments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/payments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "payments"
          ]
        },
        "description": "Tool to list payments. use when you need to retrieve all payments with optional filters like customer, invoice, date range, and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"page\": 0,\n  \"date_end\": \"\",\n  \"per_page\": 0,\n  \"filter_by\": \"\",\n  \"date_start\": \"\",\n  \"invoice_id\": \"\",\n  \"sort_order\": \"\",\n  \"customer_id\": \"\",\n  \"sort_column\": \"\",\n  \"payment_number\": \"\",\n  \"reference_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}