{
  "info": {
    "name": "Zoho — mcp.ai",
    "description": "REST API for the Zoho 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",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "zoho_convert_zoho_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/convert/zoho/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "convert",
            "zoho",
            "lead"
          ]
        },
        "description": "Converts a lead into a contact, account, and optionally a deal in zoho crm.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead_id\": \"\",\n  \"assign_to\": \"\",\n  \"overwrite\": false,\n  \"account_id\": \"\",\n  \"contact_id\": \"\",\n  \"notify_lead_owner\": false,\n  \"notify_new_entity_owner\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_create_zoho_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/zoho/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "zoho",
            "record"
          ]
        },
        "description": "Creates new records in a specified module in zoho crm.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\",\n  \"lar_id\": \"\",\n  \"trigger\": \"\",\n  \"module_api_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_create_zoho_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/zoho/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "zoho",
            "tag"
          ]
        },
        "description": "Creates new tags in zoho crm.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color_code\": \"\",\n  \"module_api_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_get_zoho_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/zoho/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "zoho",
            "records"
          ]
        },
        "description": "Retrieves records from a specified module in zoho crm.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\",\n  \"cvid\": 0,\n  \"page\": 0,\n  \"fields\": \"\",\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"sort_order\": \"\",\n  \"module_api_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_update_related_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/related/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "related",
            "records"
          ]
        },
        "description": "Associates or updates relationships between records across different modules in zoho crm.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\",\n  \"record_id\": \"\",\n  \"module_api_name\": \"\",\n  \"related_list_api_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zoho_update_zoho_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/zoho/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "zoho",
            "record"
          ]
        },
        "description": "Updates existing records in a specified module in zoho crm.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\",\n  \"lar_id\": \"\",\n  \"trigger\": \"\",\n  \"wf_trigger\": false,\n  \"module_api_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}