{
  "info": {
    "name": "Customgpt — mcp.ai",
    "description": "REST API for the Customgpt 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/customgpt",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "customgpt_activate_persona_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activate/persona/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activate",
            "persona",
            "version"
          ]
        },
        "description": "Restore a previous persona version for a CustomGPT agent. Activates a previous persona version, making it the current active persona. This creates a new version entry in the history (it doesn't overwr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": 0,\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_add_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "source"
          ]
        },
        "description": "Add a data source to a CustomGPT agent's knowledge base. Connects content via sitemap URL, file upload, or integration. The system begins indexing immediately after creation. Use when adding documenta",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"project_id\": 0,\n  \"sitemap_path\": \"\",\n  \"is_anonymized\": false,\n  \"is_ocr_enabled\": false,\n  \"is_vision_enabled\": false,\n  \"file_data_retension\": false,\n  \"image_extraction_type\": \"\",\n  \"is_vision_compress_image\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_clone_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clone/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clone",
            "project"
          ]
        },
        "description": "Tool to clone a CustomGPT agent (project). Creates a complete copy of an existing agent, including its knowledge base, persona, and settings. Use this to create variations of an agent for testing, or ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_create_conversation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/conversation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "conversation"
          ]
        },
        "description": "Tool to create a new conversation session for a CustomGPT agent. Use this when starting a new chat interaction - it returns a session ID that you'll use to send messages. Optionally provide a name to ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_create_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project"
          ]
        },
        "description": "Tool to create a new CustomGPT agent from a sitemap URL or file upload. The agent immediately begins processing the content to build its knowledge base. Use when you need to create a new AI agent with",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"project_name\": \"\",\n  \"sitemap_path\": \"\",\n  \"is_anonymized\": false,\n  \"is_ocr_enabled\": false,\n  \"is_vision_enabled\": false,\n  \"file_data_retension\": false,\n  \"is_vision_compress_image\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_delete_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "page"
          ]
        },
        "description": "Tool to delete a document from a CustomGPT agent's knowledge base. Permanently removes a document and the agent will no longer reference this content when answering questions. Use this to remove outda",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageId\": 0,\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_delete_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project"
          ]
        },
        "description": "Tool to delete a CustomGPT project by ID. Use when you need to permanently remove an existing agent after confirming the ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_delete_project_license",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/license",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "license"
          ]
        },
        "description": "Deletes a license from a CustomGPT project/agent. Requires numeric project ID and license ID. This action is idempotent - it succeeds even if the license doesn't exist (404). The project must have lic",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"licenseId\": \"\",\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_delete_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "source"
          ]
        },
        "description": "Tool to delete a data source from a CustomGPT agent. Removes the source and all its documents from the agent's knowledge base. Use this to disconnect content that's no longer relevant or to clean up a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sourceId\": 0,\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_export_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "leads"
          ]
        },
        "description": "Export leads from a CustomGPT project. Returns lead information captured from conversations including email addresses, names, phone numbers, and custom fields. Supports pagination and date range filte",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"end_date\": \"\",\n  \"projectId\": 0,\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "message"
          ]
        },
        "description": "Tool to get message details from a CustomGPT conversation. Returns the complete details for a single message, including the user's prompt, the agent's response, timestamps, citations, and any attached",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"promptId\": 0,\n  \"projectId\": 0,\n  \"sessionId\": \"\",\n  \"includeInsights\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_message_trust_score",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/message/trust/score",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "message",
            "trust",
            "score"
          ]
        },
        "description": "Tool to retrieve verification trust score for a message in a CustomGPT conversation. Returns a score calculated by checking how well the agent's claims are supported by source documents. Higher scores",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"promptId\": 0,\n  \"projectId\": 0,\n  \"sessionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_page_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page",
            "metadata"
          ]
        },
        "description": "Tool to get document metadata including title, source URL, word count, and custom metadata fields. Use this to display document information or manage your knowledge base.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageId\": \"\",\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_plugins",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/plugins",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "plugins"
          ]
        },
        "description": "Tool to retrieve plugin details for a specific CustomGPT agent (project). Use when you need to inspect plugin configuration, status, and metadata for an agent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project"
          ]
        },
        "description": "Tool to get agent details. Returns the full configuration and current status for a specific agent. Use this to check processing status, view settings, or retrieve metadata about the agent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"width\": \"\",\n  \"height\": \"\",\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_project_license",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/license",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "license"
          ]
        },
        "description": "Tool to retrieve a license for a specific project. Use when you need to fetch license details by license ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"licenseId\": \"\",\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_project_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "settings"
          ]
        },
        "description": "Retrieve configuration settings for a specific CustomGPT agent/project. Returns settings including: chatbot avatar, background, default prompt, example questions, response source, language, and brandi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_report_analysis",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report/analysis",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report",
            "analysis"
          ]
        },
        "description": "Tool to retrieve analytics chart data for a CustomGPT project. Returns time-series data formatted for charts, with daily or weekly breakdowns of key metrics including conversation counts, query counts",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": \"\",\n  \"interval\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_report_conversations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report/conversations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report",
            "conversations"
          ]
        },
        "description": "Tool to get conversation analytics for a CustomGPT project. Returns conversation metrics including total conversations, average queries per conversation, and other engagement statistics. Use this to u",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_report_intelligence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report/intelligence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report",
            "intelligence"
          ]
        },
        "description": "Tool to get customer intelligence for a CustomGPT project. Returns AI-analyzed insights about users including common intents, emotional sentiment, frequently discussed topics, and emerging trends. Use",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"leads\": \"\",\n  \"limit\": 0,\n  \"country\": \"\",\n  \"user_id\": \"\",\n  \"accuracy\": \"\",\n  \"end_date\": \"\",\n  \"language\": \"\",\n  \"project_id\": 0,\n  \"start_date\": \"\",\n  \"external_id\": \"\",\n  \"user_intent\": \"\",\n  \"user_emotion\": \"\",\n  \"risk_fidelity\": \"\",\n  \"content_source\": \"\",\n  \"request_source\": \"\",\n  \"risk_jailbreak\": \"\",\n  \"risk_profanity\": \"\",\n  \"stakeholder_status\": \"\",\n  \"risk_prompt_leakage\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_report_traffic",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report/traffic",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report",
            "traffic"
          ]
        },
        "description": "Tool to retrieve traffic analytics for a CustomGPT agent/project. Returns user traffic metrics including unique visitors, session counts, geographic distribution, and device types. Use this to underst",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stats"
          ]
        },
        "description": "Tool to get agent statistics. Returns usage metrics and performance statistics for an agent, including total conversations, query counts, document statistics, and processing information. Use when you ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_usage_limits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/usage/limits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "usage",
            "limits"
          ]
        },
        "description": "Get account usage limits showing current usage vs. maximum allowed for projects, storage credits, and API queries. This returns how many projects, storage credits (characters indexed), and queries you",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_get_user_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "profile"
          ]
        },
        "description": "Tool to retrieve the current user's profile information. Use when you need to display or verify authenticated user details after login.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_list_conversation_messages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/conversation/messages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "conversation",
            "messages"
          ]
        },
        "description": "Retrieves all messages from a CustomGPT conversation, including both user queries and AI responses. Use this to view the complete chat history for a specific conversation session. Returns an empty lis",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": \"\",\n  \"sessionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_list_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pages"
          ]
        },
        "description": "Lists all documents in a CustomGPT agent's knowledge base. Returns indexed content including webpages, PDFs, and uploaded files that the agent can reference. Supports filtering by crawl/index status a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"projectId\": 0,\n  \"crawlStatus\": \"\",\n  \"indexStatus\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_list_personas",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/personas",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "personas"
          ]
        },
        "description": "Tool to list persona versions for a CustomGPT agent. Use when you need to view the version history of an agent's persona. Every time the persona is updated, a snapshot is automatically saved, allowing",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_list_project_licenses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/licenses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "licenses"
          ]
        },
        "description": "List all licenses for a CustomGPT project/agent. Returns an array of license objects with details like ID, type, status, and timestamps. Returns an empty array if the project has no licenses or if lic",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "Lists all CustomGPT projects (agents) for the authenticated user. Returns projects with full details including ID, name, type, chat status, and timestamps. Supports pagination via the 'page' parameter",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_list_sources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sources"
          ]
        },
        "description": "Tool to list all data sources connected to an agent. Returns sources from various origins like sitemaps, Google Drive folders, SharePoint sites, or uploaded files. Use this to manage what content feed",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_reindex_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reindex/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reindex",
            "page"
          ]
        },
        "description": "Tool to reindex a document in CustomGPT knowledge base. Re-crawls and re-indexes a URL-based document to update its content. Use this when the source content has changed and you want the agent to use ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageId\": 0,\n  \"projectId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_search_team_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/team/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "team",
            "members"
          ]
        },
        "description": "Tool to search for team members by email address or user ID. Use this to find users when assigning permissions or managing team access. Requires Owner or Admin role to execute.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_submit_message_feedback",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/message/feedback",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "message",
            "feedback"
          ]
        },
        "description": "Tool to submit feedback (thumbs up/down) for a message in a CustomGPT conversation. Use this to record user satisfaction signals that help identify which AI responses are helpful and which need improv",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"promptId\": 0,\n  \"reaction\": \"\",\n  \"projectId\": 0,\n  \"sessionId\": \"\",\n  \"includeInsights\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_update_page_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/page/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "page",
            "metadata"
          ]
        },
        "description": "Update document metadata for a specific page in a CustomGPT project. Updates custom metadata fields such as title, description, URL, and image that help organize and manage your knowledge base. Use wh",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"image\": \"\",\n  \"title\": \"\",\n  \"pageId\": 0,\n  \"projectId\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_update_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project"
          ]
        },
        "description": "Updates an existing CustomGPT agent's name or configuration settings. Use this to rename an agent or modify its basic properties without affecting its knowledge base. Returns the complete updated proj",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"is_shared\": false,\n  \"project_id\": 0,\n  \"project_name\": \"\",\n  \"sitemap_path\": \"\",\n  \"is_anonymized\": false,\n  \"is_ocr_enabled\": false,\n  \"file_data_retension\": false,\n  \"are_licenses_allowed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_update_project_license",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/license",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "license"
          ]
        },
        "description": "Updates the name of an existing license for a CustomGPT project/agent. Prerequisites: - The project must have licenses enabled in its plan - Both project ID and license ID must be valid and exist - Us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"licenseId\": \"\",\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_update_project_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "settings"
          ]
        },
        "description": "Update CustomGPT agent configuration settings. Updates persona instructions, response format, citation style, branding, and deployment settings. Only include fields you want to change - omitted fields",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": 0,\n  \"chat_bot_bg\": {},\n  \"font_family\": \"\",\n  \"user_avatar\": {},\n  \"chatbot_color\": \"\",\n  \"chatbot_model\": \"\",\n  \"chatbot_title\": \"\",\n  \"view_less_msg\": \"\",\n  \"view_more_msg\": \"\",\n  \"default_prompt\": \"\",\n  \"ending_message\": \"\",\n  \"radius_styling\": \"\",\n  \"user_awareness\": false,\n  \"chat_bot_avatar\": {},\n  \"remove_branding\": false,\n  \"response_source\": \"\",\n  \"agent_capability\": \"\",\n  \"chat_bot_bg_type\": \"\",\n  \"chatbot_msg_lang\": \"\",\n  \"enable_citations\": 0,\n  \"enable_feedbacks\": false,\n  \"is_hybrid_search\": false,\n  \"markdown_enabled\": false,\n  \"spotlight_avatar\": {},\n  \"chat_bot_bg_color\": \"\",\n  \"example_questions\": \"\",\n  \"hang_in_there_msg\": \"\",\n  \"no_answer_message\": \"\",\n  \"chatbot_siesta_msg\": \"\",\n  \"is_selling_enabled\": false,\n  \"chatbot_title_color\": \"\",\n  \"citations_view_type\": \"\",\n  \"user_avatar_enabled\": false,\n  \"input_field_addendum\": \"\",\n  \"persona_instructions\": \"\",\n  \"title_avatar_enabled\": false,\n  \"chat_bot_color_scheme\": \"\",\n  \"chatbot_toolbar_color\": \"\",\n  \"spotlight_avatar_type\": \"\",\n  \"can_share_conversation\": false,\n  \"image_citation_display\": \"\",\n  \"spotlight_avatar_shape\": \"\",\n  \"can_export_conversation\": false,\n  \"user_avatar_orientation\": \"\",\n  \"conversation_time_window\": 0,\n  \"spotlight_avatar_enabled\": false,\n  \"try_asking_questions_msg\": \"\",\n  \"citations_sources_label_msg\": \"\",\n  \"conversation_retention_days\": 0,\n  \"enable_inline_citations_api\": false,\n  \"hide_sources_from_responses\": false,\n  \"limit_image_citation_height\": false,\n  \"agent_title_avatar_alignment\": \"\",\n  \"is_loading_indicator_enabled\": false,\n  \"use_opengraph_image_citation\": false,\n  \"chatbot_failed_moderation_msg\": \"\",\n  \"conversation_retention_period\": \"\",\n  \"citations_answer_source_label_msg\": \"\",\n  \"use_context_aware_starter_question\": false,\n  \"enable_recaptcha_for_public_chatbots\": false,\n  \"enable_agent_knowledge_base_awareness\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_update_source",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/source",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "source"
          ]
        },
        "description": "Update source settings for a CustomGPT agent data source. Configure how the source is indexed and kept up to date by adjusting auto-sync frequency, crawl depth, file filters, and refresh behavior. Use",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_id\": 0,\n  \"project_id\": 0,\n  \"executive_js\": false,\n  \"create_new_pages\": false,\n  \"refresh_schedule\": {},\n  \"allow_extra_timeout\": false,\n  \"remove_unexist_pages\": false,\n  \"image_extraction_type\": \"\",\n  \"data_refresh_frequency\": \"\",\n  \"refresh_existing_pages\": \"\",\n  \"update_existing_images\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_update_user_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user",
            "profile"
          ]
        },
        "description": "Updates the authenticated user's profile information in CustomGPT. Use this action to modify profile details such as the user's display name, email address, or profile photo URL. All fields are option",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"profile_photo_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "customgpt_verify_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "message"
          ]
        },
        "description": "Tool to verify message accuracy by triggering a fact-checking verification process. Use when you need to verify claims in a conversation message against source documents. The system compares each clai",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"promptId\": 0,\n  \"projectId\": 0,\n  \"sessionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}