diff --git a/rest-api/ai-agents-apis/agents/create-agent.mdx b/rest-api/ai-agents-apis/agents/create-agent.mdx index ff16d565f..dfa21b84a 100644 --- a/rest-api/ai-agents-apis/agents/create-agent.mdx +++ b/rest-api/ai-agents-apis/agents/create-agent.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/agents description: "Creates a new agent with optional tools, API tools, MCP servers, and frontend actions. Use this endpoint to set up a fully configured agent in a single request. **Validation:** All referenced tools," --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/agents/delete-agent.mdx b/rest-api/ai-agents-apis/agents/delete-agent.mdx index 1e157361e..88b86e699 100644 --- a/rest-api/ai-agents-apis/agents/delete-agent.mdx +++ b/rest-api/ai-agents-apis/agents/delete-agent.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agent-builder/agents/{uid} description: "Deletes an agent by its UID." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/agents/get-agent.mdx b/rest-api/ai-agents-apis/agents/get-agent.mdx index bbb389c07..a55f37a70 100644 --- a/rest-api/ai-agents-apis/agents/get-agent.mdx +++ b/rest-api/ai-agents-apis/agents/get-agent.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/agents/{uid} description: "Retrieves a specific agent by its UID. Use this endpoint to inspect an agent's full configuration, including its tools, model, and instructions." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/agents/list-agent-tools-and-actions.mdx b/rest-api/ai-agents-apis/agents/list-agent-tools-and-actions.mdx index 130b690f7..c8d752a8f 100644 --- a/rest-api/ai-agents-apis/agents/list-agent-tools-and-actions.mdx +++ b/rest-api/ai-agents-apis/agents/list-agent-tools-and-actions.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/agents/{uid}/enabled-items description: "Retrieves all enabled items for a specific agent, categorized by type. Use this endpoint to see which tools, frontend actions, API tools, and MCP servers are currently enabled for an agent. **Categor" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/agents/list-agents.mdx b/rest-api/ai-agents-apis/agents/list-agents.mdx index 1b2b6b775..c7ac4d9b7 100644 --- a/rest-api/ai-agents-apis/agents/list-agents.mdx +++ b/rest-api/ai-agents-apis/agents/list-agents.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/agents description: "Retrieves a paginated list of agents for your CometChat app. Use this endpoint to browse, search, and manage your agents. **Search:** Use the `search` parameter to filter agents by name, description," --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/agents/list-available-models.mdx b/rest-api/ai-agents-apis/agents/list-available-models.mdx index 607946a33..7de2458ba 100644 --- a/rest-api/ai-agents-apis/agents/list-available-models.mdx +++ b/rest-api/ai-agents-apis/agents/list-available-models.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/agents/available-models description: "Lists the AI models available for agent creation. Returns model identifiers that can be used when creating or updating an agent's configuration." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/agents/search-agent-tools.mdx b/rest-api/ai-agents-apis/agents/search-agent-tools.mdx index 75435f6e4..acda16ec2 100644 --- a/rest-api/ai-agents-apis/agents/search-agent-tools.mdx +++ b/rest-api/ai-agents-apis/agents/search-agent-tools.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/agents/{uid}/tools/search description: "Searches across all tool types available for an agent, including ready-to-use tools, API tools, and MCP servers. Use this endpoint to find specific tools across all categories. **Filtering:** Use the" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/agents/update-agent.mdx b/rest-api/ai-agents-apis/agents/update-agent.mdx index 742cba400..98ff7971e 100644 --- a/rest-api/ai-agents-apis/agents/update-agent.mdx +++ b/rest-api/ai-agents-apis/agents/update-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid} description: "Updates an existing agent by its UID. Use this endpoint to modify an agent's configuration, instructions, model, or connected tools. **Validation:** Referenced tools, API tools, and MCP servers are v" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/custom-api-tools/add-api-tools-to-agent.mdx b/rest-api/ai-agents-apis/custom-api-tools/add-api-tools-to-agent.mdx index 428615745..7de312f61 100644 --- a/rest-api/ai-agents-apis/custom-api-tools/add-api-tools-to-agent.mdx +++ b/rest-api/ai-agents-apis/custom-api-tools/add-api-tools-to-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/api-tools/add description: "Adds one or more API tools to a specific agent. Use this endpoint to give an agent access to custom API tool integrations. **Request body:** The `apiTools` array contains API tool slugs. Returns the" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/custom-api-tools/create-api-tool.mdx b/rest-api/ai-agents-apis/custom-api-tools/create-api-tool.mdx index 2a6de37f8..fdb96088c 100644 --- a/rest-api/ai-agents-apis/custom-api-tools/create-api-tool.mdx +++ b/rest-api/ai-agents-apis/custom-api-tools/create-api-tool.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/api-tools description: "Creates a new API tool configuration for the application. Use this endpoint to define a custom API endpoint that agents can call during conversations. **Uniqueness:** The slug must be unique per appl" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/custom-api-tools/delete-api-tool.mdx b/rest-api/ai-agents-apis/custom-api-tools/delete-api-tool.mdx index 3804ca7d2..a65b04972 100644 --- a/rest-api/ai-agents-apis/custom-api-tools/delete-api-tool.mdx +++ b/rest-api/ai-agents-apis/custom-api-tools/delete-api-tool.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agent-builder/api-tools/{slug} description: "Deletes an API tool by its slug." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/custom-api-tools/get-api-tool.mdx b/rest-api/ai-agents-apis/custom-api-tools/get-api-tool.mdx index 6c62bd9e3..4f8c32606 100644 --- a/rest-api/ai-agents-apis/custom-api-tools/get-api-tool.mdx +++ b/rest-api/ai-agents-apis/custom-api-tools/get-api-tool.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/api-tools/{slug} description: "Retrieves a single custom API tool by its slug." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/custom-api-tools/list-api-tools.mdx b/rest-api/ai-agents-apis/custom-api-tools/list-api-tools.mdx index 962cc2ffe..7dc2cd7ff 100644 --- a/rest-api/ai-agents-apis/custom-api-tools/list-api-tools.mdx +++ b/rest-api/ai-agents-apis/custom-api-tools/list-api-tools.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/api-tools description: "Retrieves a paginated list of API tools for the application. Use this endpoint to browse and manage custom API tool configurations." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/custom-api-tools/remove-api-tools-from-agent.mdx b/rest-api/ai-agents-apis/custom-api-tools/remove-api-tools-from-agent.mdx index 919debcec..1f685c8aa 100644 --- a/rest-api/ai-agents-apis/custom-api-tools/remove-api-tools-from-agent.mdx +++ b/rest-api/ai-agents-apis/custom-api-tools/remove-api-tools-from-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/api-tools/remove description: "Removes one or more API tools from a specific agent. Use this endpoint to revoke API tool access from an agent. **Request body:** The `apiTools` array contains API tool slugs to remove. Returns the u" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/custom-api-tools/update-api-tool.mdx b/rest-api/ai-agents-apis/custom-api-tools/update-api-tool.mdx index 7ab623ba1..497a0c8b0 100644 --- a/rest-api/ai-agents-apis/custom-api-tools/update-api-tool.mdx +++ b/rest-api/ai-agents-apis/custom-api-tools/update-api-tool.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/api-tools/{slug} description: "Updates an existing API tool by its slug. Use this endpoint to modify an API tool's parameters, description, or endpoint configuration." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/frontend-actions/add-frontend-actions-to-agent.mdx b/rest-api/ai-agents-apis/frontend-actions/add-frontend-actions-to-agent.mdx index 2d84d2cf3..08717f417 100644 --- a/rest-api/ai-agents-apis/frontend-actions/add-frontend-actions-to-agent.mdx +++ b/rest-api/ai-agents-apis/frontend-actions/add-frontend-actions-to-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/frontend-actions/add description: "Adds one or more frontend actions to a specific agent. Use this endpoint to enable an agent to trigger client-side UI operations. **Frontend actions** allow agents to interact with the user interface" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/frontend-actions/create-frontend-action.mdx b/rest-api/ai-agents-apis/frontend-actions/create-frontend-action.mdx index a67d497de..a4a03a91d 100644 --- a/rest-api/ai-agents-apis/frontend-actions/create-frontend-action.mdx +++ b/rest-api/ai-agents-apis/frontend-actions/create-frontend-action.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/frontend-actions description: "Creates a new frontend action for the application. Use this endpoint to define a client-side UI operation that agents can trigger during conversations. **Uniqueness:** The trigger function must be un" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/frontend-actions/delete-frontend-action.mdx b/rest-api/ai-agents-apis/frontend-actions/delete-frontend-action.mdx index 090bc6590..5bf1930cb 100644 --- a/rest-api/ai-agents-apis/frontend-actions/delete-frontend-action.mdx +++ b/rest-api/ai-agents-apis/frontend-actions/delete-frontend-action.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agent-builder/frontend-actions/{id} description: "Deletes a frontend action by its unique ID." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/frontend-actions/get-frontend-action.mdx b/rest-api/ai-agents-apis/frontend-actions/get-frontend-action.mdx index f3e8e776a..3ab99746a 100644 --- a/rest-api/ai-agents-apis/frontend-actions/get-frontend-action.mdx +++ b/rest-api/ai-agents-apis/frontend-actions/get-frontend-action.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/frontend-actions/{id} description: "Retrieves a single frontend action by its ID." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/frontend-actions/list-frontend-actions.mdx b/rest-api/ai-agents-apis/frontend-actions/list-frontend-actions.mdx index f807165ff..026fbbfaa 100644 --- a/rest-api/ai-agents-apis/frontend-actions/list-frontend-actions.mdx +++ b/rest-api/ai-agents-apis/frontend-actions/list-frontend-actions.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/frontend-actions description: "Retrieves a paginated list of frontend actions for the application. Use this endpoint to browse and manage frontend action configurations." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/frontend-actions/remove-frontend-actions-from-agent.mdx b/rest-api/ai-agents-apis/frontend-actions/remove-frontend-actions-from-agent.mdx index 7e4b8f06f..a0f1957c6 100644 --- a/rest-api/ai-agents-apis/frontend-actions/remove-frontend-actions-from-agent.mdx +++ b/rest-api/ai-agents-apis/frontend-actions/remove-frontend-actions-from-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/frontend-actions/remove description: "Removes one or more frontend actions from a specific agent. Use this endpoint to revoke frontend action capabilities from an agent. **Request body:** The `frontendActions` array contains frontend act" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/frontend-actions/update-frontend-action.mdx b/rest-api/ai-agents-apis/frontend-actions/update-frontend-action.mdx index 34e70063e..6bece8a04 100644 --- a/rest-api/ai-agents-apis/frontend-actions/update-frontend-action.mdx +++ b/rest-api/ai-agents-apis/frontend-actions/update-frontend-action.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/frontend-actions/{id} description: "Updates an existing frontend action by its unique ID. Use this endpoint to modify a frontend action's parameters, description, or trigger function." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/add-knowledge-base-files.mdx b/rest-api/ai-agents-apis/knowledge-base/add-knowledge-base-files.mdx index b2177e4f2..47e080248 100644 --- a/rest-api/ai-agents-apis/knowledge-base/add-knowledge-base-files.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/add-knowledge-base-files.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/knowledge-base/{sourceType} description: "Associates uploaded files or text entries with an agent's knowledge base. Use this endpoint after uploading files via the Initiate File Uploads endpoint to make them available to the agent. **Source" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/create-text-detail.mdx b/rest-api/ai-agents-apis/knowledge-base/create-text-detail.mdx index 8b6ef6b1d..101b5269b 100644 --- a/rest-api/ai-agents-apis/knowledge-base/create-text-detail.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/create-text-detail.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/knowledge-base/text description: "Creates a new text-based knowledge base entry. Use this endpoint to add custom text content that agents can reference during conversations. **Processing:** Accepts a title and text content, converts" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/delete-text-detail.mdx b/rest-api/ai-agents-apis/knowledge-base/delete-text-detail.mdx index e0030b23f..e1696c17d 100644 --- a/rest-api/ai-agents-apis/knowledge-base/delete-text-detail.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/delete-text-detail.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agent-builder/knowledge-base/text/{uniqueId} description: "Deletes a text-based knowledge base entry and all associated data by its unique ID. **Cleanup:** Removes the text content, associated embeddings, and any agent references to this entry." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/delete-uploaded-file.mdx b/rest-api/ai-agents-apis/knowledge-base/delete-uploaded-file.mdx index a174a7e8e..42f6c56d9 100644 --- a/rest-api/ai-agents-apis/knowledge-base/delete-uploaded-file.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/delete-uploaded-file.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agent-builder/knowledge-base/uploads/{uniqueId} description: "Deletes an uploaded file and all associated data from the knowledge base by its unique ID. **Cleanup:** Removes the file, associated embeddings, and any agent references to this file." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/delete-website.mdx b/rest-api/ai-agents-apis/knowledge-base/delete-website.mdx index ff4707102..7f7d2a1cb 100644 --- a/rest-api/ai-agents-apis/knowledge-base/delete-website.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/delete-website.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agent-builder/knowledge-base/website/{uniqueId} description: "Deletes a website crawl and all associated data from the knowledge base by its unique ID. **Cleanup:** Removes all crawled pages, associated embeddings, and any agent references to this website." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/get-discovered-urls.mdx b/rest-api/ai-agents-apis/knowledge-base/get-discovered-urls.mdx index 48d096db5..634bbb30c 100644 --- a/rest-api/ai-agents-apis/knowledge-base/get-discovered-urls.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/get-discovered-urls.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/knowledge-base/website/{parentUniqueId}/di description: "Retrieves all URLs discovered during a website crawl. Use this endpoint to review which pages were found before processing them." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/get-source-pages.mdx b/rest-api/ai-agents-apis/knowledge-base/get-source-pages.mdx index c0ccf3d16..c5b7d1ee8 100644 --- a/rest-api/ai-agents-apis/knowledge-base/get-source-pages.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/get-source-pages.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/knowledge-base/{sourceType}/{uniqueId}/pag description: "Retrieves paginated pages for a specific knowledge base source file. Use this endpoint to inspect the individual pages extracted from a knowledge base source." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/get-text-entry.mdx b/rest-api/ai-agents-apis/knowledge-base/get-text-entry.mdx index 5cefb3d43..ca33717cc 100644 --- a/rest-api/ai-agents-apis/knowledge-base/get-text-entry.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/get-text-entry.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/knowledge-base/text/{uniqueId} description: "Retrieves a specific text-based knowledge base entry by its unique ID." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/initiate-file-uploads.mdx b/rest-api/ai-agents-apis/knowledge-base/initiate-file-uploads.mdx index 8874989f2..984266b72 100644 --- a/rest-api/ai-agents-apis/knowledge-base/initiate-file-uploads.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/initiate-file-uploads.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/knowledge-base/uploads/initiate description: "Generates presigned URLs and creates upload records for one or more files. Use this endpoint to prepare files for upload to the knowledge base. **Workflow:** After receiving the presigned URLs, uploa" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/list-knowledge-base-records.mdx b/rest-api/ai-agents-apis/knowledge-base/list-knowledge-base-records.mdx index 953e91875..99be8ed40 100644 --- a/rest-api/ai-agents-apis/knowledge-base/list-knowledge-base-records.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/list-knowledge-base-records.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/knowledge-base description: "Retrieves knowledge base records for the application. Use this endpoint to browse all knowledge base sources including files, text entries, and websites." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/list-text-entries.mdx b/rest-api/ai-agents-apis/knowledge-base/list-text-entries.mdx index 3036da9fc..09f3c7e6f 100644 --- a/rest-api/ai-agents-apis/knowledge-base/list-text-entries.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/list-text-entries.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/knowledge-base/text description: "Lists all text-based knowledge base entries for the app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/poll-discovered-urls-status.mdx b/rest-api/ai-agents-apis/knowledge-base/poll-discovered-urls-status.mdx index 87db25e4d..6cb38e3fa 100644 --- a/rest-api/ai-agents-apis/knowledge-base/poll-discovered-urls-status.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/poll-discovered-urls-status.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/knowledge-base/website/{parentUniqueId}/d description: "Retrieves the processing status of discovered URLs by their unique IDs. Use this endpoint to monitor the progress of URL crawling within a parent website crawl. **Behavior:** Only returns records for" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/poll-knowledge-base-status.mdx b/rest-api/ai-agents-apis/knowledge-base/poll-knowledge-base-status.mdx index 37301395a..d97502c7b 100644 --- a/rest-api/ai-agents-apis/knowledge-base/poll-knowledge-base-status.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/poll-knowledge-base-status.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/knowledge-base/status/poll description: "Retrieves the indexing status for one or more knowledge base sources by their IDs. Use this endpoint to monitor the progress of file uploads, text entries, or website crawls being indexed. **Batch su" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/process-discovered-urls.mdx b/rest-api/ai-agents-apis/knowledge-base/process-discovered-urls.mdx index 36c464dd8..94b795f0f 100644 --- a/rest-api/ai-agents-apis/knowledge-base/process-discovered-urls.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/process-discovered-urls.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/knowledge-base/website/{parentUniqueId}/d description: "Marks discovered URLs for exclusion and initiates batch crawling of the remaining URLs. Use this endpoint to selectively process pages discovered during a website crawl." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/remove-knowledge-base-files.mdx b/rest-api/ai-agents-apis/knowledge-base/remove-knowledge-base-files.mdx index 9573f4eb0..340bbb37d 100644 --- a/rest-api/ai-agents-apis/knowledge-base/remove-knowledge-base-files.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/remove-knowledge-base-files.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/knowledge-base/{sourceType} description: "Removes files or text entries from an agent's knowledge base. Use this endpoint to disassociate specific sources from an agent without deleting the underlying content. **Source types:** Specify the s" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/retry-indexing-for-website-pages.mdx b/rest-api/ai-agents-apis/knowledge-base/retry-indexing-for-website-pages.mdx index f5861d627..e55c75b92 100644 --- a/rest-api/ai-agents-apis/knowledge-base/retry-indexing-for-website-pages.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/retry-indexing-for-website-pages.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/knowledge-base/website/{parentUniqueId}/ description: "Retries the indexing process for specific pages under a website knowledge base source. Pass the unique IDs of the pages to re-index, or send an empty array to automatically retry all pages that failed" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/retry-knowledge-base-source-indexing.mdx b/rest-api/ai-agents-apis/knowledge-base/retry-knowledge-base-source-indexing.mdx index 0ef2bf3bc..24d3850cd 100644 --- a/rest-api/ai-agents-apis/knowledge-base/retry-knowledge-base-source-indexing.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/retry-knowledge-base-source-indexing.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/knowledge-base/{sourceType}/{uniqueId}/s description: "Retries the indexing process for a specific knowledge base source that failed during its initial processing. Provide the source type and its unique ID to re-trigger vectorization. **Supported source" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/scrape-single-page.mdx b/rest-api/ai-agents-apis/knowledge-base/scrape-single-page.mdx index e6071b557..6d8dd3624 100644 --- a/rest-api/ai-agents-apis/knowledge-base/scrape-single-page.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/scrape-single-page.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/knowledge-base/website/individual-page description: "Scrapes a single webpage to extract its content for the knowledge base. Use this endpoint to add a specific page without crawling an entire website. **Extraction:** Returns the page title, descriptio" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/scrape-website.mdx b/rest-api/ai-agents-apis/knowledge-base/scrape-website.mdx index c591edca6..b684b961f 100644 --- a/rest-api/ai-agents-apis/knowledge-base/scrape-website.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/scrape-website.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/knowledge-base/website/scrape description: "Scrapes a website to discover and crawl its pages for the knowledge base. Use this endpoint to add website content as a knowledge source for agents. **Configuration:** Supports options for URL filter" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/knowledge-base/update-text-detail.mdx b/rest-api/ai-agents-apis/knowledge-base/update-text-detail.mdx index c2e57ba8c..cf76d9b99 100644 --- a/rest-api/ai-agents-apis/knowledge-base/update-text-detail.mdx +++ b/rest-api/ai-agents-apis/knowledge-base/update-text-detail.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/knowledge-base/text/{uniqueId} description: "Updates a specific text-based knowledge base entry by its unique ID. Use this endpoint to modify the title or content of an existing text entry. **Re-indexing:** The content is re-uploaded and the en" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/mcp-servers/add-mcp-servers-to-agent.mdx b/rest-api/ai-agents-apis/mcp-servers/add-mcp-servers-to-agent.mdx index f6266c4b8..7fc863aab 100644 --- a/rest-api/ai-agents-apis/mcp-servers/add-mcp-servers-to-agent.mdx +++ b/rest-api/ai-agents-apis/mcp-servers/add-mcp-servers-to-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/mcp/add description: "Adds one or more MCP servers to a specific agent. Use this endpoint to connect an agent to additional Model Context Protocol servers. **Request body:** The `mcps` array contains MCP server slugs. Ret" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/mcp-servers/create-mcp-server.mdx b/rest-api/ai-agents-apis/mcp-servers/create-mcp-server.mdx index 5b39facbf..7477b26fb 100644 --- a/rest-api/ai-agents-apis/mcp-servers/create-mcp-server.mdx +++ b/rest-api/ai-agents-apis/mcp-servers/create-mcp-server.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/mcp-servers description: "Creates a new MCP (Model Context Protocol) server configuration for the application. Use this endpoint to register an MCP server that agents can connect to. **Uniqueness:** The slug must be unique pe" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/mcp-servers/delete-mcp-server.mdx b/rest-api/ai-agents-apis/mcp-servers/delete-mcp-server.mdx index 9e9857e92..bed3726fc 100644 --- a/rest-api/ai-agents-apis/mcp-servers/delete-mcp-server.mdx +++ b/rest-api/ai-agents-apis/mcp-servers/delete-mcp-server.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agent-builder/mcp-servers/{slug} description: "Deletes an MCP server by its slug." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/mcp-servers/get-mcp-server.mdx b/rest-api/ai-agents-apis/mcp-servers/get-mcp-server.mdx index 175254852..22b64cc5b 100644 --- a/rest-api/ai-agents-apis/mcp-servers/get-mcp-server.mdx +++ b/rest-api/ai-agents-apis/mcp-servers/get-mcp-server.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/mcp-servers/{slug} description: "Retrieves a single MCP server configuration by its slug." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/mcp-servers/list-mcp-servers.mdx b/rest-api/ai-agents-apis/mcp-servers/list-mcp-servers.mdx index dd70a670a..b5e16f525 100644 --- a/rest-api/ai-agents-apis/mcp-servers/list-mcp-servers.mdx +++ b/rest-api/ai-agents-apis/mcp-servers/list-mcp-servers.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/mcp-servers description: "Retrieves a paginated list of MCP servers for the application. Use this endpoint to browse and manage MCP server configurations." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/mcp-servers/remove-mcp-servers-from-agent.mdx b/rest-api/ai-agents-apis/mcp-servers/remove-mcp-servers-from-agent.mdx index fa826fb50..bfe14c37a 100644 --- a/rest-api/ai-agents-apis/mcp-servers/remove-mcp-servers-from-agent.mdx +++ b/rest-api/ai-agents-apis/mcp-servers/remove-mcp-servers-from-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/mcp/remove description: "Removes one or more MCP servers from a specific agent. Use this endpoint to disconnect MCP servers from an agent. **Request body:** The `mcps` array contains MCP server slugs to remove. Returns the u" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/mcp-servers/update-mcp-server.mdx b/rest-api/ai-agents-apis/mcp-servers/update-mcp-server.mdx index d16bc560c..d1c6f5bdd 100644 --- a/rest-api/ai-agents-apis/mcp-servers/update-mcp-server.mdx +++ b/rest-api/ai-agents-apis/mcp-servers/update-mcp-server.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/mcp-servers/{slug} description: "Updates an existing MCP server by its slug. Use this endpoint to modify an MCP server's configuration or connection details." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/tools/add-tools-to-agent.mdx b/rest-api/ai-agents-apis/tools/add-tools-to-agent.mdx index d7ba598e7..a48e47047 100644 --- a/rest-api/ai-agents-apis/tools/add-tools-to-agent.mdx +++ b/rest-api/ai-agents-apis/tools/add-tools-to-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/tools/add description: "Adds one or more tools to a specific agent. Use this endpoint to extend an agent's capabilities with additional tool integrations. **Request body:** The `tools` array contains tool slugs. Returns the" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/tools/enable-tool-actions.mdx b/rest-api/ai-agents-apis/tools/enable-tool-actions.mdx index b64602b26..5e8d094d4 100644 --- a/rest-api/ai-agents-apis/tools/enable-tool-actions.mdx +++ b/rest-api/ai-agents-apis/tools/enable-tool-actions.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/tools/{slug}/actions/add description: "Adds actions to a specific tool attached to an agent." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/tools/get-tool-actions-for-agent.mdx b/rest-api/ai-agents-apis/tools/get-tool-actions-for-agent.mdx index 3c429bbb7..54f4fb109 100644 --- a/rest-api/ai-agents-apis/tools/get-tool-actions-for-agent.mdx +++ b/rest-api/ai-agents-apis/tools/get-tool-actions-for-agent.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/agents/{uid}/tools/{slug}/actions description: "Lists all actions available for a specific tool attached to an agent." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/tools/remove-tool-actions.mdx b/rest-api/ai-agents-apis/tools/remove-tool-actions.mdx index 7a85bd1cd..e3d7fcbec 100644 --- a/rest-api/ai-agents-apis/tools/remove-tool-actions.mdx +++ b/rest-api/ai-agents-apis/tools/remove-tool-actions.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/tools/{slug}/actions/remove description: "Removes actions from a specific tool attached to an agent." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/tools/remove-tools-from-agent.mdx b/rest-api/ai-agents-apis/tools/remove-tools-from-agent.mdx index cace459dc..89826188a 100644 --- a/rest-api/ai-agents-apis/tools/remove-tools-from-agent.mdx +++ b/rest-api/ai-agents-apis/tools/remove-tools-from-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/{uid}/tools/remove description: "Removes one or more tools from a specific agent. Use this endpoint to revoke tool access from an agent. **Request body:** The `tools` array contains tool slugs to remove. Returns the updated agent ob" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/variables/create-custom-variable.mdx b/rest-api/ai-agents-apis/variables/create-custom-variable.mdx index f2a1cde0a..15ce8f2ef 100644 --- a/rest-api/ai-agents-apis/variables/create-custom-variable.mdx +++ b/rest-api/ai-agents-apis/variables/create-custom-variable.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agent-builder/agents/variables/custom description: "Creates a new custom variable for the application. Use this endpoint to define dynamic values that can be injected into agent instructions. **Source types:** Variables can source values from message" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/variables/delete-custom-variable.mdx b/rest-api/ai-agents-apis/variables/delete-custom-variable.mdx index 50e181eb3..4f7076a7f 100644 --- a/rest-api/ai-agents-apis/variables/delete-custom-variable.mdx +++ b/rest-api/ai-agents-apis/variables/delete-custom-variable.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agent-builder/agents/variables/custom/{variableId} description: "Deletes a custom variable by its ID. **Impact:** Any agent instructions referencing this variable will no longer resolve its value." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/variables/get-all-available-variables.mdx b/rest-api/ai-agents-apis/variables/get-all-available-variables.mdx index 7f46964fe..b274cf59a 100644 --- a/rest-api/ai-agents-apis/variables/get-all-available-variables.mdx +++ b/rest-api/ai-agents-apis/variables/get-all-available-variables.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agent-builder/agents/variables/all description: "Retrieves all enabled variables (predefined and custom) for the application. Use this endpoint to view variable definitions and understand where they are used. **Usage tracking:** Each variable inclu" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/ai-agents-apis/variables/update-custom-variable.mdx b/rest-api/ai-agents-apis/variables/update-custom-variable.mdx index 89e2932df..8101c9afb 100644 --- a/rest-api/ai-agents-apis/variables/update-custom-variable.mdx +++ b/rest-api/ai-agents-apis/variables/update-custom-variable.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agent-builder/agents/variables/custom/{variableId} description: "Updates an existing custom variable by its ID. Use this endpoint to modify a variable's source, default value, or other properties. **Partial updates:** Only the provided fields are updated; omitted" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/agents/create-byo-agent.mdx b/rest-api/byo-ai-agents-apis/agents/create-byo-agent.mdx index 3e4ac93fc..db10052c7 100644 --- a/rest-api/byo-ai-agents-apis/agents/create-byo-agent.mdx +++ b/rest-api/byo-ai-agents-apis/agents/create-byo-agent.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/agents description: "Creates a new BYO Agent that delegates conversations to an external AI Agent. Use this endpoint to register a BYO (Bring Your Own) agent powered by frameworks like Mastra, CrewAI, or LangGraph. **Val" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/agents/delete-byo-agent.mdx b/rest-api/byo-ai-agents-apis/agents/delete-byo-agent.mdx index 406dd2128..5fe288cc9 100644 --- a/rest-api/byo-ai-agents-apis/agents/delete-byo-agent.mdx +++ b/rest-api/byo-ai-agents-apis/agents/delete-byo-agent.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/agents/{uid} description: "Deletes a BYO Agent by its UID." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/agents/list-byo-agents.mdx b/rest-api/byo-ai-agents-apis/agents/list-byo-agents.mdx index 1a3df5420..eeb5082b5 100644 --- a/rest-api/byo-ai-agents-apis/agents/list-byo-agents.mdx +++ b/rest-api/byo-ai-agents-apis/agents/list-byo-agents.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/agents description: "Retrieves all BYO Agents configured for your CometChat app. Use this endpoint to view all registered BYO (Bring Your Own) agents and their current configuration." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/agents/update-byo-agent.mdx b/rest-api/byo-ai-agents-apis/agents/update-byo-agent.mdx index 9cf64c22f..064f5ae33 100644 --- a/rest-api/byo-ai-agents-apis/agents/update-byo-agent.mdx +++ b/rest-api/byo-ai-agents-apis/agents/update-byo-agent.mdx @@ -3,4 +3,4 @@ openapi: patch /ai-agents/agents/{uid} description: "Updates an existing BYO Agent by its UID. Use this endpoint to modify agent configuration, update referenced tools, or change the connected AI framework. **Validation:** Referenced tools and actions" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/tools/create-tool.mdx b/rest-api/byo-ai-agents-apis/tools/create-tool.mdx index 7fd6f4a9a..f59d48078 100644 --- a/rest-api/byo-ai-agents-apis/tools/create-tool.mdx +++ b/rest-api/byo-ai-agents-apis/tools/create-tool.mdx @@ -3,4 +3,4 @@ openapi: post /ai-agents/tools description: "Defines custom tools that agents can invoke during conversations. **Naming:** The tool name must be unique per application. **Type:** When `doNotExecute` is `true`, the type is set to `tool`. Otherw" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/tools/delete-tool.mdx b/rest-api/byo-ai-agents-apis/tools/delete-tool.mdx index c320d95e2..ecea764bc 100644 --- a/rest-api/byo-ai-agents-apis/tools/delete-tool.mdx +++ b/rest-api/byo-ai-agents-apis/tools/delete-tool.mdx @@ -3,4 +3,4 @@ openapi: delete /ai-agents/tools/{name} description: "Deletes a tool by its unique name." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/tools/get-tool.mdx b/rest-api/byo-ai-agents-apis/tools/get-tool.mdx index fe5a886aa..7e7cb3c49 100644 --- a/rest-api/byo-ai-agents-apis/tools/get-tool.mdx +++ b/rest-api/byo-ai-agents-apis/tools/get-tool.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/tools/{name} description: "Retrieves a specific tool by its unique name. Use this endpoint to inspect a tool's configuration, parameters, and description." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/tools/list-tools.mdx b/rest-api/byo-ai-agents-apis/tools/list-tools.mdx index a374aca27..a205ec506 100644 --- a/rest-api/byo-ai-agents-apis/tools/list-tools.mdx +++ b/rest-api/byo-ai-agents-apis/tools/list-tools.mdx @@ -3,4 +3,4 @@ openapi: get /ai-agents/tools description: "Retrieves all tools configured for your CometChat app. Use this endpoint to view available tools and actions, or filter by type. **Filtering:** Use the `type` query parameter to filter by `action` or" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/byo-ai-agents-apis/tools/update-tool.mdx b/rest-api/byo-ai-agents-apis/tools/update-tool.mdx index 66670e488..2a11b7f10 100644 --- a/rest-api/byo-ai-agents-apis/tools/update-tool.mdx +++ b/rest-api/byo-ai-agents-apis/tools/update-tool.mdx @@ -3,4 +3,4 @@ openapi: put /ai-agents/tools/{name} description: "Updates an existing tool by its unique name. Use this endpoint to modify a tool's description, parameters, or behavior. **Restrictions:** The tool name cannot be changed after creation. The provided" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/byo-ai-agents-apis/error-codes). diff --git a/rest-api/management-apis/app/create.mdx b/rest-api/management-apis/app/create.mdx index 4719c5e23..962166f29 100644 --- a/rest-api/management-apis/app/create.mdx +++ b/rest-api/management-apis/app/create.mdx @@ -11,4 +11,4 @@ description: "Creates an app in the account. It returns all the app related info | App version | v3 | Only option available | | Maximum collaborators per app | 25 | Team management limit | -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/app/delete.mdx b/rest-api/management-apis/app/delete.mdx index c2496e161..4f597fbea 100644 --- a/rest-api/management-apis/app/delete.mdx +++ b/rest-api/management-apis/app/delete.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId} description: "Schedule a specific app for deletion." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/app/fetch-usage.mdx b/rest-api/management-apis/app/fetch-usage.mdx index a83eedb45..46cd47299 100644 --- a/rest-api/management-apis/app/fetch-usage.mdx +++ b/rest-api/management-apis/app/fetch-usage.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/usage description: "Retrieves usage data for multi-tenant apps." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/app/list.mdx b/rest-api/management-apis/app/list.mdx index 7ba288086..3df2a2d44 100644 --- a/rest-api/management-apis/app/list.mdx +++ b/rest-api/management-apis/app/list.mdx @@ -3,4 +3,4 @@ openapi: get /apps description: "Lists all the apps for an account." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/bitly-delete-settings.mdx b/rest-api/management-apis/extensions/bitly-delete-settings.mdx index 9237ea321..81124258a 100644 --- a/rest-api/management-apis/extensions/bitly-delete-settings.mdx +++ b/rest-api/management-apis/extensions/bitly-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/url-shortener-bitly/v1/settings description: "Bitly : Delete the settings for Bitly extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/bitly-get-settings.mdx b/rest-api/management-apis/extensions/bitly-get-settings.mdx index 86b4b9110..fb9a3599b 100644 --- a/rest-api/management-apis/extensions/bitly-get-settings.mdx +++ b/rest-api/management-apis/extensions/bitly-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/url-shortener-bitly/v1/settings description: "Bitly : Get settings for Bitly extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/bitly-store-settings.mdx b/rest-api/management-apis/extensions/bitly-store-settings.mdx index d907e201a..0f7d5411a 100644 --- a/rest-api/management-apis/extensions/bitly-store-settings.mdx +++ b/rest-api/management-apis/extensions/bitly-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/url-shortener-bitly/v1/settings description: "Bitly : Store new settings for Bitly extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/bitly-update-settings.mdx b/rest-api/management-apis/extensions/bitly-update-settings.mdx index 27970e444..067419e54 100644 --- a/rest-api/management-apis/extensions/bitly-update-settings.mdx +++ b/rest-api/management-apis/extensions/bitly-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/url-shortener-bitly/v1/settings description: "Bitly : Update the settings for Bitly extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/chat-widgets-create.mdx b/rest-api/management-apis/extensions/chat-widgets-create.mdx index a33f2edc5..d4a41db82 100644 --- a/rest-api/management-apis/extensions/chat-widgets-create.mdx +++ b/rest-api/management-apis/extensions/chat-widgets-create.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/widget/v2/settings description: "Chat Widgets Create a new Chat Widget." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/chat-widgets-list.mdx b/rest-api/management-apis/extensions/chat-widgets-list.mdx index efab31400..14b9a8224 100644 --- a/rest-api/management-apis/extensions/chat-widgets-list.mdx +++ b/rest-api/management-apis/extensions/chat-widgets-list.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/widget/v2/settings description: "Chat Widgets List all the Chat Widgets for an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/chat-widgets-update.mdx b/rest-api/management-apis/extensions/chat-widgets-update.mdx index 6f43097ea..41ff2da5b 100644 --- a/rest-api/management-apis/extensions/chat-widgets-update.mdx +++ b/rest-api/management-apis/extensions/chat-widgets-update.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/widget/v2/settings description: "Chat Widgets Update an existing Chat Widget." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/chatwoot-delete-settings.mdx b/rest-api/management-apis/extensions/chatwoot-delete-settings.mdx index 9d0f73871..993672a4e 100644 --- a/rest-api/management-apis/extensions/chatwoot-delete-settings.mdx +++ b/rest-api/management-apis/extensions/chatwoot-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/chatwoot/v1/settings description: "Chatwoot : Delete the settings for Chatwoot extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/chatwoot-get-settings.mdx b/rest-api/management-apis/extensions/chatwoot-get-settings.mdx index 3e982efca..dcb08c872 100644 --- a/rest-api/management-apis/extensions/chatwoot-get-settings.mdx +++ b/rest-api/management-apis/extensions/chatwoot-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/chatwoot/v1/settings description: "Chatwoot : Get settings for Chatwoot extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/chatwoot-store-settings.mdx b/rest-api/management-apis/extensions/chatwoot-store-settings.mdx index c62b86351..eea38567f 100644 --- a/rest-api/management-apis/extensions/chatwoot-store-settings.mdx +++ b/rest-api/management-apis/extensions/chatwoot-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/chatwoot/v1/settings description: "Chatwoot : Store new settings for Chatwoot extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/chatwoot-update-settings.mdx b/rest-api/management-apis/extensions/chatwoot-update-settings.mdx index 625098d86..62b49edea 100644 --- a/rest-api/management-apis/extensions/chatwoot-update-settings.mdx +++ b/rest-api/management-apis/extensions/chatwoot-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/chatwoot/v1/settings description: "Chatwoot : Update the settings for Chatwoot extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/data-masking-delete-settings.mdx b/rest-api/management-apis/extensions/data-masking-delete-settings.mdx index 7cc767192..a4d817a27 100644 --- a/rest-api/management-apis/extensions/data-masking-delete-settings.mdx +++ b/rest-api/management-apis/extensions/data-masking-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/data-masking/v1/settings description: "Data masking : Delete the settings for Data masking extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/data-masking-get-settings.mdx b/rest-api/management-apis/extensions/data-masking-get-settings.mdx index 3862acf23..7fbe03a77 100644 --- a/rest-api/management-apis/extensions/data-masking-get-settings.mdx +++ b/rest-api/management-apis/extensions/data-masking-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/data-masking/v1/settings description: "Data masking : Get the settings for Data masking extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/data-masking-store-or-update-settings.mdx b/rest-api/management-apis/extensions/data-masking-store-or-update-settings.mdx index 1660219bb..355470c51 100644 --- a/rest-api/management-apis/extensions/data-masking-store-or-update-settings.mdx +++ b/rest-api/management-apis/extensions/data-masking-store-or-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/data-masking/v1/settings description: "Data masking : Store or update the settings for Data masking extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/email-notification-delete-settings.mdx b/rest-api/management-apis/extensions/email-notification-delete-settings.mdx index dced79e5b..bb81d3e7b 100644 --- a/rest-api/management-apis/extensions/email-notification-delete-settings.mdx +++ b/rest-api/management-apis/extensions/email-notification-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/email-notification/v1/settings description: "Email Notification : Delete the settings for Email notification extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/email-notification-get-settings.mdx b/rest-api/management-apis/extensions/email-notification-get-settings.mdx index d07f33a0f..0532eef71 100644 --- a/rest-api/management-apis/extensions/email-notification-get-settings.mdx +++ b/rest-api/management-apis/extensions/email-notification-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/email-notification/v1/settings description: "Email Notification : Get settings for Email notification extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/email-notification-store-settings.mdx b/rest-api/management-apis/extensions/email-notification-store-settings.mdx index 65e9e8825..e154631d0 100644 --- a/rest-api/management-apis/extensions/email-notification-store-settings.mdx +++ b/rest-api/management-apis/extensions/email-notification-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/email-notification/v1/settings description: "Email Notification : Store new settings for Email notification extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/email-notification-update-settings.mdx b/rest-api/management-apis/extensions/email-notification-update-settings.mdx index d018dc7bc..11c49778b 100644 --- a/rest-api/management-apis/extensions/email-notification-update-settings.mdx +++ b/rest-api/management-apis/extensions/email-notification-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/email-notification/v1/settings description: "Email Notification : Update the settings for Email notification extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/email-replies-delete-settings.mdx b/rest-api/management-apis/extensions/email-replies-delete-settings.mdx index 68ca8deef..5c4db9cab 100644 --- a/rest-api/management-apis/extensions/email-replies-delete-settings.mdx +++ b/rest-api/management-apis/extensions/email-replies-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/email-replies/v1/settings description: "Email replies : Delete the settings for Email replies extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/email-replies-get-settings.mdx b/rest-api/management-apis/extensions/email-replies-get-settings.mdx index 5fcf26214..57c3be719 100644 --- a/rest-api/management-apis/extensions/email-replies-get-settings.mdx +++ b/rest-api/management-apis/extensions/email-replies-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/email-replies/v1/settings description: "Email replies : Get settings for Email replies extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/email-replies-store-settings.mdx b/rest-api/management-apis/extensions/email-replies-store-settings.mdx index 4d4e0c88f..908b0f4d0 100644 --- a/rest-api/management-apis/extensions/email-replies-store-settings.mdx +++ b/rest-api/management-apis/extensions/email-replies-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/email-replies/v1/settings description: "Email replies : Store new settings for Email replies extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/email-replies-update-settings.mdx b/rest-api/management-apis/extensions/email-replies-update-settings.mdx index ee8ccfdd4..6804a0948 100644 --- a/rest-api/management-apis/extensions/email-replies-update-settings.mdx +++ b/rest-api/management-apis/extensions/email-replies-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/email-replies/v1/settings description: "Email replies : Update the settings for Email replies extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/enabledisable.mdx b/rest-api/management-apis/extensions/enabledisable.mdx index 3226f252a..2924a47d7 100644 --- a/rest-api/management-apis/extensions/enabledisable.mdx +++ b/rest-api/management-apis/extensions/enabledisable.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions description: "Enables or disables the extension for an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/end-to-end-encryption-delete-settings.mdx b/rest-api/management-apis/extensions/end-to-end-encryption-delete-settings.mdx index 5a1b7a2bd..2db47fb44 100644 --- a/rest-api/management-apis/extensions/end-to-end-encryption-delete-settings.mdx +++ b/rest-api/management-apis/extensions/end-to-end-encryption-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/e2ee/v1/settings description: "End-to-end encryption : Delete the settings for End-to-end encryption extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/end-to-end-encryption-get-settings.mdx b/rest-api/management-apis/extensions/end-to-end-encryption-get-settings.mdx index 05b3dd1bc..ec487e47a 100644 --- a/rest-api/management-apis/extensions/end-to-end-encryption-get-settings.mdx +++ b/rest-api/management-apis/extensions/end-to-end-encryption-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/e2ee/v1/settings description: "End-to-end encryption : Get settings for End-to-end encryption extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/end-to-end-encryption-store-settings.mdx b/rest-api/management-apis/extensions/end-to-end-encryption-store-settings.mdx index e3f9151ab..69877fccc 100644 --- a/rest-api/management-apis/extensions/end-to-end-encryption-store-settings.mdx +++ b/rest-api/management-apis/extensions/end-to-end-encryption-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/e2ee/v1/settings description: "End-to-end encryption : Store new settings for End-to-end encryption extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/end-to-end-encryption-update-settings.mdx b/rest-api/management-apis/extensions/end-to-end-encryption-update-settings.mdx index fe33c4e8f..025a8ae62 100644 --- a/rest-api/management-apis/extensions/end-to-end-encryption-update-settings.mdx +++ b/rest-api/management-apis/extensions/end-to-end-encryption-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/e2ee/v1/settings description: "End-to-end encryption : Update the settings for End-to-end encryption extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/giphy-delete-settings-for-giphy.mdx b/rest-api/management-apis/extensions/giphy-delete-settings-for-giphy.mdx index 4d63f5c5d..c14f96b6a 100644 --- a/rest-api/management-apis/extensions/giphy-delete-settings-for-giphy.mdx +++ b/rest-api/management-apis/extensions/giphy-delete-settings-for-giphy.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/gifs-giphy/v1/settings description: "Giphy : Deletes the settings for Giphy extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/giphy-get-settings.mdx b/rest-api/management-apis/extensions/giphy-get-settings.mdx index 8bbc027fa..bc7e1fff8 100644 --- a/rest-api/management-apis/extensions/giphy-get-settings.mdx +++ b/rest-api/management-apis/extensions/giphy-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/gifs-giphy/v1/settings description: "Giphy : Returns the settings for Giphy extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/giphy-store-settings.mdx b/rest-api/management-apis/extensions/giphy-store-settings.mdx index 6cac7bf79..64b6ffa13 100644 --- a/rest-api/management-apis/extensions/giphy-store-settings.mdx +++ b/rest-api/management-apis/extensions/giphy-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/gifs-giphy/v1/settings description: "Giphy : Saving the settings for Giphy extensions for the first time" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/giphy-update-settings.mdx b/rest-api/management-apis/extensions/giphy-update-settings.mdx index a22a5a715..ac741a61d 100644 --- a/rest-api/management-apis/extensions/giphy-update-settings.mdx +++ b/rest-api/management-apis/extensions/giphy-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/gifs-giphy/v1/settings description: "Giphy : Update the settings for Giphy extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/image-moderation-delete-settings.mdx b/rest-api/management-apis/extensions/image-moderation-delete-settings.mdx index c3f903cc2..14d46c855 100644 --- a/rest-api/management-apis/extensions/image-moderation-delete-settings.mdx +++ b/rest-api/management-apis/extensions/image-moderation-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/image-moderation/v1/settings description: "Image Moderation : Delete the settings for Image moderation extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/image-moderation-get-settings.mdx b/rest-api/management-apis/extensions/image-moderation-get-settings.mdx index aed4a84f0..ffb11ae73 100644 --- a/rest-api/management-apis/extensions/image-moderation-get-settings.mdx +++ b/rest-api/management-apis/extensions/image-moderation-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/image-moderation/v1/settings description: "Image Moderation : Get settings for Image moderation extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/image-moderation-store-settings.mdx b/rest-api/management-apis/extensions/image-moderation-store-settings.mdx index b16c3325e..e5c69ad64 100644 --- a/rest-api/management-apis/extensions/image-moderation-store-settings.mdx +++ b/rest-api/management-apis/extensions/image-moderation-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/image-moderation/v1/settings description: "Image Moderation : Store new settings for Image moderation extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/image-moderation-update-settings.mdx b/rest-api/management-apis/extensions/image-moderation-update-settings.mdx index cc0fa6048..7e3e2acba 100644 --- a/rest-api/management-apis/extensions/image-moderation-update-settings.mdx +++ b/rest-api/management-apis/extensions/image-moderation-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/image-moderation/v1/settings description: "Image Moderation : Update the settings for Image moderation extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/in-flight-message-moderation-delete-settings.mdx b/rest-api/management-apis/extensions/in-flight-message-moderation-delete-settings.mdx index 18fec74bb..7fe901567 100644 --- a/rest-api/management-apis/extensions/in-flight-message-moderation-delete-settings.mdx +++ b/rest-api/management-apis/extensions/in-flight-message-moderation-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/human-moderation/v1/settings description: "In-flight message moderation : Delete the settings for In-flight message moderation extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/in-flight-message-moderation-get-settings.mdx b/rest-api/management-apis/extensions/in-flight-message-moderation-get-settings.mdx index 5572efa26..a9a346ca9 100644 --- a/rest-api/management-apis/extensions/in-flight-message-moderation-get-settings.mdx +++ b/rest-api/management-apis/extensions/in-flight-message-moderation-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/human-moderation/v1/settings description: "In-flight message moderation : Get settings for In-flight message moderation extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/in-flight-message-moderation-store-settings.mdx b/rest-api/management-apis/extensions/in-flight-message-moderation-store-settings.mdx index 10cee13b9..367e840fd 100644 --- a/rest-api/management-apis/extensions/in-flight-message-moderation-store-settings.mdx +++ b/rest-api/management-apis/extensions/in-flight-message-moderation-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/human-moderation/v1/settings description: "In-flight message moderation : Store new settings for In-flight message moderation extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/in-flight-message-moderation-update-settings.mdx b/rest-api/management-apis/extensions/in-flight-message-moderation-update-settings.mdx index aac05e3f2..cf0df4fd4 100644 --- a/rest-api/management-apis/extensions/in-flight-message-moderation-update-settings.mdx +++ b/rest-api/management-apis/extensions/in-flight-message-moderation-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/human-moderation/v1/settings description: "In-flight message moderation : Update the settings for In-flight message moderation extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/intercom-delete-settings.mdx b/rest-api/management-apis/extensions/intercom-delete-settings.mdx index 5719a5e34..972af8a19 100644 --- a/rest-api/management-apis/extensions/intercom-delete-settings.mdx +++ b/rest-api/management-apis/extensions/intercom-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/intercom/v1/settings description: "Intercom : Delete the settings for Intercom extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/intercom-get-settings.mdx b/rest-api/management-apis/extensions/intercom-get-settings.mdx index 347b0d190..43febaf47 100644 --- a/rest-api/management-apis/extensions/intercom-get-settings.mdx +++ b/rest-api/management-apis/extensions/intercom-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/intercom/v1/settings description: "Intercom : Get settings for Intercom extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/intercom-store-settings.mdx b/rest-api/management-apis/extensions/intercom-store-settings.mdx index ee026bb96..505e611fc 100644 --- a/rest-api/management-apis/extensions/intercom-store-settings.mdx +++ b/rest-api/management-apis/extensions/intercom-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/intercom/v1/settings description: "Intercom : Store new settings for Intercom extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/intercom-update-settings.mdx b/rest-api/management-apis/extensions/intercom-update-settings.mdx index 676b1d524..9ae7ee745 100644 --- a/rest-api/management-apis/extensions/intercom-update-settings.mdx +++ b/rest-api/management-apis/extensions/intercom-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/intercom/v1/settings description: "Intercom : Update the settings for Intercom extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/list-extensions.mdx b/rest-api/management-apis/extensions/list-extensions.mdx index 90c45315a..bb4198b4b 100644 --- a/rest-api/management-apis/extensions/list-extensions.mdx +++ b/rest-api/management-apis/extensions/list-extensions.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions description: "List the Extensions." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/message-shortcuts-delete-settings.mdx b/rest-api/management-apis/extensions/message-shortcuts-delete-settings.mdx index 0b0c52703..fab51a5d1 100644 --- a/rest-api/management-apis/extensions/message-shortcuts-delete-settings.mdx +++ b/rest-api/management-apis/extensions/message-shortcuts-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/message-shortcuts/v1/settings description: "Message Shortcuts : Delete the settings for Message shortcuts extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/message-shortcuts-get-settings.mdx b/rest-api/management-apis/extensions/message-shortcuts-get-settings.mdx index f91316146..c80667134 100644 --- a/rest-api/management-apis/extensions/message-shortcuts-get-settings.mdx +++ b/rest-api/management-apis/extensions/message-shortcuts-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/message-shortcuts/v1/settings description: "Message Shortcuts : Get settings for Message shortcuts extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/message-shortcuts-store-settings.mdx b/rest-api/management-apis/extensions/message-shortcuts-store-settings.mdx index e151ec5cb..89e5a324f 100644 --- a/rest-api/management-apis/extensions/message-shortcuts-store-settings.mdx +++ b/rest-api/management-apis/extensions/message-shortcuts-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/message-shortcuts/v1/settings description: "Message Shortcuts : Store new settings for Message shortcuts extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/message-shortcuts-update-settings.mdx b/rest-api/management-apis/extensions/message-shortcuts-update-settings.mdx index d75a55934..1aeb90b3c 100644 --- a/rest-api/management-apis/extensions/message-shortcuts-update-settings.mdx +++ b/rest-api/management-apis/extensions/message-shortcuts-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/message-shortcuts/v1/settings description: "Message Shortcuts : Update the settings for Message shortcuts extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/profanity-filter-adds-settings.mdx b/rest-api/management-apis/extensions/profanity-filter-adds-settings.mdx index 6cb5b53d7..6d2394f34 100644 --- a/rest-api/management-apis/extensions/profanity-filter-adds-settings.mdx +++ b/rest-api/management-apis/extensions/profanity-filter-adds-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/profanity-filter/v1/settings description: "Profanity-filter : Adds settings an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/profanity-filter-delete-settings.mdx b/rest-api/management-apis/extensions/profanity-filter-delete-settings.mdx index 990dbf36e..ec1566008 100644 --- a/rest-api/management-apis/extensions/profanity-filter-delete-settings.mdx +++ b/rest-api/management-apis/extensions/profanity-filter-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/profanity-filter/v1/settings description: "Profanity-filter : Delete the settings for Profanity-filter extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/profanity-filter-get-settings.mdx b/rest-api/management-apis/extensions/profanity-filter-get-settings.mdx index e91dd5b24..d80a73278 100644 --- a/rest-api/management-apis/extensions/profanity-filter-get-settings.mdx +++ b/rest-api/management-apis/extensions/profanity-filter-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/profanity-filter/v1/settings description: "Profanity-filter : Get settings of an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/profanity-filter-update-settings.mdx b/rest-api/management-apis/extensions/profanity-filter-update-settings.mdx index 6a20d3246..bb88817c3 100644 --- a/rest-api/management-apis/extensions/profanity-filter-update-settings.mdx +++ b/rest-api/management-apis/extensions/profanity-filter-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/profanity-filter/v1/settings description: "Profanity-filter : Update the settings for Profanity-filter extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/push-notification-delete-settings.mdx b/rest-api/management-apis/extensions/push-notification-delete-settings.mdx index cdd069aed..cce6b4401 100644 --- a/rest-api/management-apis/extensions/push-notification-delete-settings.mdx +++ b/rest-api/management-apis/extensions/push-notification-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/push-notification/v1/settings description: "Push notification : Delete the settings for Push notifications extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/push-notification-get-certificate.mdx b/rest-api/management-apis/extensions/push-notification-get-certificate.mdx index a003cae2e..789ec0bb8 100644 --- a/rest-api/management-apis/extensions/push-notification-get-certificate.mdx +++ b/rest-api/management-apis/extensions/push-notification-get-certificate.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/push-notification/v1/query-certificates description: "Push notification : Get Certificate description" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/push-notification-get-settings.mdx b/rest-api/management-apis/extensions/push-notification-get-settings.mdx index 97ad778c2..db0340887 100644 --- a/rest-api/management-apis/extensions/push-notification-get-settings.mdx +++ b/rest-api/management-apis/extensions/push-notification-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/push-notification/v1/settings description: "Push notification : Get settings for Push notifications extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/push-notification-store-settings.mdx b/rest-api/management-apis/extensions/push-notification-store-settings.mdx index c49003c0f..6f0b09bd5 100644 --- a/rest-api/management-apis/extensions/push-notification-store-settings.mdx +++ b/rest-api/management-apis/extensions/push-notification-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/push-notification/v1/settings description: "Push notification : Store new settings for Push notifications extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/push-notification-update-settings.mdx b/rest-api/management-apis/extensions/push-notification-update-settings.mdx index a78abe371..254e1cac7 100644 --- a/rest-api/management-apis/extensions/push-notification-update-settings.mdx +++ b/rest-api/management-apis/extensions/push-notification-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/push-notification/v1/settings description: "Push notification : Update the settings for Push notifications extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/push-notification-upload-p12-certificate.mdx b/rest-api/management-apis/extensions/push-notification-upload-p12-certificate.mdx index 022290a68..b39bc294a 100644 --- a/rest-api/management-apis/extensions/push-notification-upload-p12-certificate.mdx +++ b/rest-api/management-apis/extensions/push-notification-upload-p12-certificate.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/push-notification/v1/upload-certificate-p description: "Push notification : Upload a p12 Certificate" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/push-notification-upload-p8-certificate.mdx b/rest-api/management-apis/extensions/push-notification-upload-p8-certificate.mdx index a23c6798e..1def93711 100644 --- a/rest-api/management-apis/extensions/push-notification-upload-p8-certificate.mdx +++ b/rest-api/management-apis/extensions/push-notification-upload-p8-certificate.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/push-notification/v1/upload-certificate-p description: "Push notification : Upload a p8 Certificate" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/report-message-delete-settings.mdx b/rest-api/management-apis/extensions/report-message-delete-settings.mdx index 59b398ed9..244b9a25e 100644 --- a/rest-api/management-apis/extensions/report-message-delete-settings.mdx +++ b/rest-api/management-apis/extensions/report-message-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/report-message/v1/settings description: "Report message : Delete the settings for Report message extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/report-message-get-settings.mdx b/rest-api/management-apis/extensions/report-message-get-settings.mdx index da2450e85..d86539e42 100644 --- a/rest-api/management-apis/extensions/report-message-get-settings.mdx +++ b/rest-api/management-apis/extensions/report-message-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/report-message/v1/settings description: "Report message : Get settings for Report message extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/report-message-store-settings.mdx b/rest-api/management-apis/extensions/report-message-store-settings.mdx index 34edf9d25..84b016688 100644 --- a/rest-api/management-apis/extensions/report-message-store-settings.mdx +++ b/rest-api/management-apis/extensions/report-message-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/report-message/v1/settings description: "Report message : Store new settings for Report message extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/report-message-update-settings.mdx b/rest-api/management-apis/extensions/report-message-update-settings.mdx index b9ce4bd60..a040a1ca0 100644 --- a/rest-api/management-apis/extensions/report-message-update-settings.mdx +++ b/rest-api/management-apis/extensions/report-message-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/report-message/v1/settings description: "Report message : Update the settings for Report message extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/report-user-delete-settings.mdx b/rest-api/management-apis/extensions/report-user-delete-settings.mdx index 91f0970bd..ede8c3220 100644 --- a/rest-api/management-apis/extensions/report-user-delete-settings.mdx +++ b/rest-api/management-apis/extensions/report-user-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/report-user/v1/settings description: "Report user : Delete the settings for Report user extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/report-user-get-settings.mdx b/rest-api/management-apis/extensions/report-user-get-settings.mdx index bc378feee..01962296d 100644 --- a/rest-api/management-apis/extensions/report-user-get-settings.mdx +++ b/rest-api/management-apis/extensions/report-user-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/report-user/v1/settings description: "Report user : Get settings for Report user extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/report-user-store-settings.mdx b/rest-api/management-apis/extensions/report-user-store-settings.mdx index 207ee1fa7..f2278ce93 100644 --- a/rest-api/management-apis/extensions/report-user-store-settings.mdx +++ b/rest-api/management-apis/extensions/report-user-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/report-user/v1/settings description: "Report user : Store new settings for Report user extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/report-user-update-settings.mdx b/rest-api/management-apis/extensions/report-user-update-settings.mdx index 4d7d07973..60f154e3f 100644 --- a/rest-api/management-apis/extensions/report-user-update-settings.mdx +++ b/rest-api/management-apis/extensions/report-user-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/report-user/v1/settings description: "Report user : Update the settings for Report user extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/rich-media-preview-delete-settings.mdx b/rest-api/management-apis/extensions/rich-media-preview-delete-settings.mdx index 378eb9c80..739a00d2d 100644 --- a/rest-api/management-apis/extensions/rich-media-preview-delete-settings.mdx +++ b/rest-api/management-apis/extensions/rich-media-preview-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/rich-media/v1/settings description: "Rich media preview : Delete the settings for Rich media preview extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/rich-media-preview-get-settings.mdx b/rest-api/management-apis/extensions/rich-media-preview-get-settings.mdx index 6c069dfcb..23c625ea9 100644 --- a/rest-api/management-apis/extensions/rich-media-preview-get-settings.mdx +++ b/rest-api/management-apis/extensions/rich-media-preview-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/rich-media/v1/settings description: "Rich media preview : Get settings for Rich media preview extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/rich-media-preview-store-settings.mdx b/rest-api/management-apis/extensions/rich-media-preview-store-settings.mdx index a70f3d78b..71bb8138f 100644 --- a/rest-api/management-apis/extensions/rich-media-preview-store-settings.mdx +++ b/rest-api/management-apis/extensions/rich-media-preview-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/rich-media/v1/settings description: "Rich media preview : Store new settings for Rich media preview extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/rich-media-preview-update-settings.mdx b/rest-api/management-apis/extensions/rich-media-preview-update-settings.mdx index 10ca04cae..653d112fb 100644 --- a/rest-api/management-apis/extensions/rich-media-preview-update-settings.mdx +++ b/rest-api/management-apis/extensions/rich-media-preview-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/rich-media/v1/settings description: "Rich media preview : Update the settings for Rich media preview extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/sentiment-analysis-delete-settings.mdx b/rest-api/management-apis/extensions/sentiment-analysis-delete-settings.mdx index f01045cbd..7f8a631dc 100644 --- a/rest-api/management-apis/extensions/sentiment-analysis-delete-settings.mdx +++ b/rest-api/management-apis/extensions/sentiment-analysis-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/sentiment-analysis/v1/settings description: "Sentiment analysis : Delete the settings for Sentiment analysis extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/sentiment-analysis-get-settings.mdx b/rest-api/management-apis/extensions/sentiment-analysis-get-settings.mdx index 78fb2fd7c..cc56293a6 100644 --- a/rest-api/management-apis/extensions/sentiment-analysis-get-settings.mdx +++ b/rest-api/management-apis/extensions/sentiment-analysis-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/sentiment-analysis/v1/settings description: "Sentiment analysis : Get settings for Sentiment analysis extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/sentiment-analysis-store-settings.mdx b/rest-api/management-apis/extensions/sentiment-analysis-store-settings.mdx index 577e05e1f..1ee048a39 100644 --- a/rest-api/management-apis/extensions/sentiment-analysis-store-settings.mdx +++ b/rest-api/management-apis/extensions/sentiment-analysis-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/sentiment-analysis/v1/settings description: "Sentiment analysis : Store new settings for Sentiment analysis extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/sentiment-analysis-update-settings.mdx b/rest-api/management-apis/extensions/sentiment-analysis-update-settings.mdx index 2de2a4001..0764619fd 100644 --- a/rest-api/management-apis/extensions/sentiment-analysis-update-settings.mdx +++ b/rest-api/management-apis/extensions/sentiment-analysis-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/sentiment-analysis/v1/settings description: "Sentiment analysis : Update the settings for Sentiment analysis extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/sms-notification-delete-settings.mdx b/rest-api/management-apis/extensions/sms-notification-delete-settings.mdx index acf6c8ce9..4fda7a03b 100644 --- a/rest-api/management-apis/extensions/sms-notification-delete-settings.mdx +++ b/rest-api/management-apis/extensions/sms-notification-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/sms-notification/v1/settings description: "SMS Notification : Delete the settings for SMS Notification extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/sms-notification-get-settings.mdx b/rest-api/management-apis/extensions/sms-notification-get-settings.mdx index 8ca75aee5..257e6852c 100644 --- a/rest-api/management-apis/extensions/sms-notification-get-settings.mdx +++ b/rest-api/management-apis/extensions/sms-notification-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/sms-notification/v1/settings description: "SMS Notification : Get settings for SMS Notification extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/sms-notification-store-settings.mdx b/rest-api/management-apis/extensions/sms-notification-store-settings.mdx index ee158b614..1a55fd3ac 100644 --- a/rest-api/management-apis/extensions/sms-notification-store-settings.mdx +++ b/rest-api/management-apis/extensions/sms-notification-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/sms-notification/v1/settings description: "SMS Notification : Store new settings for SMS Notification extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/sms-notification-update-settings.mdx b/rest-api/management-apis/extensions/sms-notification-update-settings.mdx index 98777f2b0..38cded069 100644 --- a/rest-api/management-apis/extensions/sms-notification-update-settings.mdx +++ b/rest-api/management-apis/extensions/sms-notification-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/sms-notification/v1/settings description: "SMS Notification : Update the settings for SMS Notification extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/stickers-extension-delete-settings.mdx b/rest-api/management-apis/extensions/stickers-extension-delete-settings.mdx index c7380074a..b2cc23b0e 100644 --- a/rest-api/management-apis/extensions/stickers-extension-delete-settings.mdx +++ b/rest-api/management-apis/extensions/stickers-extension-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/stickers/v1/settings description: "Stickers extension : Delete the settings for Stickers extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/stickers-extension-get-settings.mdx b/rest-api/management-apis/extensions/stickers-extension-get-settings.mdx index 703af818c..b69c918a4 100644 --- a/rest-api/management-apis/extensions/stickers-extension-get-settings.mdx +++ b/rest-api/management-apis/extensions/stickers-extension-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/stickers/v1/settings description: "Stickers extension : Get settings for Stickers extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/stickers-extension-update-settings.mdx b/rest-api/management-apis/extensions/stickers-extension-update-settings.mdx index e78e0a357..50c20cd34 100644 --- a/rest-api/management-apis/extensions/stickers-extension-update-settings.mdx +++ b/rest-api/management-apis/extensions/stickers-extension-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/stickers/v1/settings description: "Stickers extension : Update the settings for Stickers extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/stipop-delete-settings.mdx b/rest-api/management-apis/extensions/stipop-delete-settings.mdx index 08ec9ca5c..f5c08640d 100644 --- a/rest-api/management-apis/extensions/stipop-delete-settings.mdx +++ b/rest-api/management-apis/extensions/stipop-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/stickers-stipop/v1/settings description: "Stipop : Delete the settings for Stipop extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/stipop-get-settings.mdx b/rest-api/management-apis/extensions/stipop-get-settings.mdx index 4cf90181b..29933db86 100644 --- a/rest-api/management-apis/extensions/stipop-get-settings.mdx +++ b/rest-api/management-apis/extensions/stipop-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/stickers-stipop/v1/settings description: "Stipop : Get settings for Stipop extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/stipop-store-settings.mdx b/rest-api/management-apis/extensions/stipop-store-settings.mdx index e8c47c83f..9b6b8e347 100644 --- a/rest-api/management-apis/extensions/stipop-store-settings.mdx +++ b/rest-api/management-apis/extensions/stipop-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/stickers-stipop/v1/settings description: "Stipop : Store new settings for Stipop extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/stipop-update-settings.mdx b/rest-api/management-apis/extensions/stipop-update-settings.mdx index aa16aaee9..850c467ff 100644 --- a/rest-api/management-apis/extensions/stipop-update-settings.mdx +++ b/rest-api/management-apis/extensions/stipop-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/stickers-stipop/v1/settings description: "Stipop : Update the settings for Stipop extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/tenor-gifs-delete-settings.mdx b/rest-api/management-apis/extensions/tenor-gifs-delete-settings.mdx index 73f41aa21..4bac9ffe7 100644 --- a/rest-api/management-apis/extensions/tenor-gifs-delete-settings.mdx +++ b/rest-api/management-apis/extensions/tenor-gifs-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/gifs-tenor/v1/settings description: "Tenor gifs : Delete the settings for Tenor gifs extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/tenor-gifs-get-settings.mdx b/rest-api/management-apis/extensions/tenor-gifs-get-settings.mdx index 72da6568d..28addf58e 100644 --- a/rest-api/management-apis/extensions/tenor-gifs-get-settings.mdx +++ b/rest-api/management-apis/extensions/tenor-gifs-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/gifs-tenor/v1/settings description: "Tenor gifs : Get settings for Tenor gifs extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/tenor-gifs-store-settings.mdx b/rest-api/management-apis/extensions/tenor-gifs-store-settings.mdx index 0bc295fa1..b433cdca6 100644 --- a/rest-api/management-apis/extensions/tenor-gifs-store-settings.mdx +++ b/rest-api/management-apis/extensions/tenor-gifs-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/gifs-tenor/v1/settings description: "Tenor gifs : Store new settings for Tenor gifs extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/tenor-gifs-update-settings.mdx b/rest-api/management-apis/extensions/tenor-gifs-update-settings.mdx index 088fd3edd..86c4dbb47 100644 --- a/rest-api/management-apis/extensions/tenor-gifs-update-settings.mdx +++ b/rest-api/management-apis/extensions/tenor-gifs-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/gifs-tenor/v1/settings description: "Tenor gifs : Update the settings for Tenor gifs extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/tinyurl-delete-settings.mdx b/rest-api/management-apis/extensions/tinyurl-delete-settings.mdx index a0fcfabbc..0a0953656 100644 --- a/rest-api/management-apis/extensions/tinyurl-delete-settings.mdx +++ b/rest-api/management-apis/extensions/tinyurl-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/url-shortener-tinyurl/v1/settings description: "TinyURL : Delete the settings for TinyURL extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/tinyurl-get-settings.mdx b/rest-api/management-apis/extensions/tinyurl-get-settings.mdx index aad95c2f5..21bed102c 100644 --- a/rest-api/management-apis/extensions/tinyurl-get-settings.mdx +++ b/rest-api/management-apis/extensions/tinyurl-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/url-shortener-tinyurl/v1/settings description: "TinyURL : Get settings for TinyURL extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/tinyurl-store-settings.mdx b/rest-api/management-apis/extensions/tinyurl-store-settings.mdx index 60018cce2..cdeea4637 100644 --- a/rest-api/management-apis/extensions/tinyurl-store-settings.mdx +++ b/rest-api/management-apis/extensions/tinyurl-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/url-shortener-tinyurl/v1/settings description: "TinyURL : Store new settings for TinyURL extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/tinyurl-update-settings.mdx b/rest-api/management-apis/extensions/tinyurl-update-settings.mdx index 165f98dbe..a9fac6746 100644 --- a/rest-api/management-apis/extensions/tinyurl-update-settings.mdx +++ b/rest-api/management-apis/extensions/tinyurl-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/url-shortener-tinyurl/v1/settings description: "TinyURL : Update the settings for TinyURL extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/video-broadcasting-delete-settings.mdx b/rest-api/management-apis/extensions/video-broadcasting-delete-settings.mdx index cd21ad57d..2fc8baac3 100644 --- a/rest-api/management-apis/extensions/video-broadcasting-delete-settings.mdx +++ b/rest-api/management-apis/extensions/video-broadcasting-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/broadcast/v1/settings description: "Video Broadcasting : Delete the settings for Video Broadcasting extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/video-broadcasting-get-settings.mdx b/rest-api/management-apis/extensions/video-broadcasting-get-settings.mdx index 1ccec86c0..95803974d 100644 --- a/rest-api/management-apis/extensions/video-broadcasting-get-settings.mdx +++ b/rest-api/management-apis/extensions/video-broadcasting-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/broadcast/v1/settings description: "Video Broadcasting : Get settings for Video Broadcasting extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/video-broadcasting-store-settings.mdx b/rest-api/management-apis/extensions/video-broadcasting-store-settings.mdx index 3d3582d99..118bc44eb 100644 --- a/rest-api/management-apis/extensions/video-broadcasting-store-settings.mdx +++ b/rest-api/management-apis/extensions/video-broadcasting-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/broadcast/v1/settings description: "Video Broadcasting : Store new settings for Video Broadcasting extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/video-broadcasting-update-settings.mdx b/rest-api/management-apis/extensions/video-broadcasting-update-settings.mdx index 70e9c6c43..7b9f0bd8a 100644 --- a/rest-api/management-apis/extensions/video-broadcasting-update-settings.mdx +++ b/rest-api/management-apis/extensions/video-broadcasting-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/broadcast/v1/settings description: "Video Broadcasting : Update the settings for Video Broadcasting extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/virus-malware-scanner-delete-settings.mdx b/rest-api/management-apis/extensions/virus-malware-scanner-delete-settings.mdx index 58dfa8d6d..ce1ed03f3 100644 --- a/rest-api/management-apis/extensions/virus-malware-scanner-delete-settings.mdx +++ b/rest-api/management-apis/extensions/virus-malware-scanner-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/virus-malware-scanner/v1/settings description: "Virus Malware Scanner : Delete the settings for Virus malware scanner extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/virus-malware-scanner-get-settings.mdx b/rest-api/management-apis/extensions/virus-malware-scanner-get-settings.mdx index f487f3a8d..aa3af655e 100644 --- a/rest-api/management-apis/extensions/virus-malware-scanner-get-settings.mdx +++ b/rest-api/management-apis/extensions/virus-malware-scanner-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/virus-malware-scanner/v1/settings description: "Virus Malware Scanner : Get settings for Virus malware scanner extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/virus-malware-scanner-store-settings.mdx b/rest-api/management-apis/extensions/virus-malware-scanner-store-settings.mdx index dfeb5c5c3..c2ed3b377 100644 --- a/rest-api/management-apis/extensions/virus-malware-scanner-store-settings.mdx +++ b/rest-api/management-apis/extensions/virus-malware-scanner-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/virus-malware-scanner/v1/settings description: "Virus Malware Scanner : Store new settings for Virus malware scanner extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/virus-malware-scanner-update-settings.mdx b/rest-api/management-apis/extensions/virus-malware-scanner-update-settings.mdx index 00337ccea..6fcba3a75 100644 --- a/rest-api/management-apis/extensions/virus-malware-scanner-update-settings.mdx +++ b/rest-api/management-apis/extensions/virus-malware-scanner-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/virus-malware-scanner/v1/settings description: "Virus Malware Scanner : Update the settings for Virus malware scanner extension." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/voice-transcription-delete-settings.mdx b/rest-api/management-apis/extensions/voice-transcription-delete-settings.mdx index 7b1cf63d2..40d8dd2fc 100644 --- a/rest-api/management-apis/extensions/voice-transcription-delete-settings.mdx +++ b/rest-api/management-apis/extensions/voice-transcription-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/voice-transcription/v1/settings description: "Voice transcription : Delete the settings for Voice transcription extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/voice-transcription-get-settings.mdx b/rest-api/management-apis/extensions/voice-transcription-get-settings.mdx index d31c14ed2..a1a7525eb 100644 --- a/rest-api/management-apis/extensions/voice-transcription-get-settings.mdx +++ b/rest-api/management-apis/extensions/voice-transcription-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/voice-transcription/v1/settings description: "Voice transcription : Get settings for Voice transcription extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/voice-transcription-store-settings.mdx b/rest-api/management-apis/extensions/voice-transcription-store-settings.mdx index 12d40f42e..9da100b5e 100644 --- a/rest-api/management-apis/extensions/voice-transcription-store-settings.mdx +++ b/rest-api/management-apis/extensions/voice-transcription-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/voice-transcription/v1/settings description: "Voice transcription : Store new settings for Voice transcription extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/voice-transcription-update-settings.mdx b/rest-api/management-apis/extensions/voice-transcription-update-settings.mdx index 3d31f496b..f2fbb5b1f 100644 --- a/rest-api/management-apis/extensions/voice-transcription-update-settings.mdx +++ b/rest-api/management-apis/extensions/voice-transcription-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/voice-transcription/v1/settings description: "Voice transcription : Update the settings for Voice transcription extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/xss-filter-delete-settings.mdx b/rest-api/management-apis/extensions/xss-filter-delete-settings.mdx index 2316ddb0e..bd16533fc 100644 --- a/rest-api/management-apis/extensions/xss-filter-delete-settings.mdx +++ b/rest-api/management-apis/extensions/xss-filter-delete-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/extensions/xss-filter/v1/settings description: "XSS Filter : Delete the settings for XSS Filter extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/xss-filter-get-settings.mdx b/rest-api/management-apis/extensions/xss-filter-get-settings.mdx index c4c827e3a..0c431e620 100644 --- a/rest-api/management-apis/extensions/xss-filter-get-settings.mdx +++ b/rest-api/management-apis/extensions/xss-filter-get-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/extensions/xss-filter/v1/settings description: "XSS Filter : Get settings for XSS Filter extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/xss-filter-store-settings.mdx b/rest-api/management-apis/extensions/xss-filter-store-settings.mdx index 06b1d18d8..09bd95d6a 100644 --- a/rest-api/management-apis/extensions/xss-filter-store-settings.mdx +++ b/rest-api/management-apis/extensions/xss-filter-store-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/extensions/xss-filter/v1/settings description: "XSS Filter : Store new settings for XSS Filter extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/extensions/xss-filter-update-settings.mdx b/rest-api/management-apis/extensions/xss-filter-update-settings.mdx index dda3cb81a..46ec78b7e 100644 --- a/rest-api/management-apis/extensions/xss-filter-update-settings.mdx +++ b/rest-api/management-apis/extensions/xss-filter-update-settings.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/extensions/xss-filter/v1/settings description: "XSS Filter : Update the settings for XSS Filter extension" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/settings/list-settings.mdx b/rest-api/management-apis/settings/list-settings.mdx index 2a2973f3e..6c9432db1 100644 --- a/rest-api/management-apis/settings/list-settings.mdx +++ b/rest-api/management-apis/settings/list-settings.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/settings description: "Lists settings of an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/settings/maps-settings.mdx b/rest-api/management-apis/settings/maps-settings.mdx index 6ef78d38b..0e460a085 100644 --- a/rest-api/management-apis/settings/maps-settings.mdx +++ b/rest-api/management-apis/settings/maps-settings.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/settings description: "Maps settings for an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/settings/unmaps-settings.mdx b/rest-api/management-apis/settings/unmaps-settings.mdx index 125657f4a..c441bdd3e 100644 --- a/rest-api/management-apis/settings/unmaps-settings.mdx +++ b/rest-api/management-apis/settings/unmaps-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/settings description: "UnMaps settings of an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/team-management/addsremove-collaborators.mdx b/rest-api/management-apis/team-management/addsremove-collaborators.mdx index b63426b1c..44f841c09 100644 --- a/rest-api/management-apis/team-management/addsremove-collaborators.mdx +++ b/rest-api/management-apis/team-management/addsremove-collaborators.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/collaborators description: "Adds or removes collaborators for an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/team-management/list-collaborators.mdx b/rest-api/management-apis/team-management/list-collaborators.mdx index bd2097c7c..9c8a2a56b 100644 --- a/rest-api/management-apis/team-management/list-collaborators.mdx +++ b/rest-api/management-apis/team-management/list-collaborators.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/collaborators description: "Lists all the collaborators of an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/webhooks/add-triggers.mdx b/rest-api/management-apis/webhooks/add-triggers.mdx index 268b255f2..1e03f8cca 100644 --- a/rest-api/management-apis/webhooks/add-triggers.mdx +++ b/rest-api/management-apis/webhooks/add-triggers.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/webhooks/{webhookId}/triggers description: "Adds trigger to a webhook in an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/webhooks/create-webhook.mdx b/rest-api/management-apis/webhooks/create-webhook.mdx index 178b88e18..0e3bf8d19 100644 --- a/rest-api/management-apis/webhooks/create-webhook.mdx +++ b/rest-api/management-apis/webhooks/create-webhook.mdx @@ -3,4 +3,4 @@ openapi: post /apps/{appId}/webhooks description: "Creates webhook in an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/webhooks/delete-webhook.mdx b/rest-api/management-apis/webhooks/delete-webhook.mdx index 49e0242ef..a6163f6d8 100644 --- a/rest-api/management-apis/webhooks/delete-webhook.mdx +++ b/rest-api/management-apis/webhooks/delete-webhook.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/webhooks/{webhookId} description: "Delete the webhook from an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/webhooks/get-webhook.mdx b/rest-api/management-apis/webhooks/get-webhook.mdx index f6f8f5b02..cbe8a3ef8 100644 --- a/rest-api/management-apis/webhooks/get-webhook.mdx +++ b/rest-api/management-apis/webhooks/get-webhook.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/webhooks/{webhookId} description: "Gets details of a webhook in an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/webhooks/list-triggers.mdx b/rest-api/management-apis/webhooks/list-triggers.mdx index a14e64617..c31e552b4 100644 --- a/rest-api/management-apis/webhooks/list-triggers.mdx +++ b/rest-api/management-apis/webhooks/list-triggers.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/webhooks/{webhookId}/triggers description: "List triggers attached to a webhook in an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/webhooks/list-webhooks.mdx b/rest-api/management-apis/webhooks/list-webhooks.mdx index dcdafff51..15bf173da 100644 --- a/rest-api/management-apis/webhooks/list-webhooks.mdx +++ b/rest-api/management-apis/webhooks/list-webhooks.mdx @@ -3,4 +3,4 @@ openapi: get /apps/{appId}/webhooks description: "Lists webhooks in an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/webhooks/remove-triggers.mdx b/rest-api/management-apis/webhooks/remove-triggers.mdx index 0763bcd2a..309375bb8 100644 --- a/rest-api/management-apis/webhooks/remove-triggers.mdx +++ b/rest-api/management-apis/webhooks/remove-triggers.mdx @@ -3,4 +3,4 @@ openapi: delete /apps/{appId}/webhooks/{webhookId}/triggers description: "Removes triggers from a webhook in an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/management-apis/webhooks/update-webhook.mdx b/rest-api/management-apis/webhooks/update-webhook.mdx index 74ce639f8..6b23697af 100644 --- a/rest-api/management-apis/webhooks/update-webhook.mdx +++ b/rest-api/management-apis/webhooks/update-webhook.mdx @@ -3,4 +3,4 @@ openapi: put /apps/{appId}/webhooks/{webhookId} description: "Updates webhook details of an app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/management-apis/error-codes). diff --git a/rest-api/notifications-apis/email/delete-custom-provider.mdx b/rest-api/notifications-apis/email/delete-custom-provider.mdx index 9924af4f1..608c81333 100644 --- a/rest-api/notifications-apis/email/delete-custom-provider.mdx +++ b/rest-api/notifications-apis/email/delete-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/email/v1/providers/custom description: "Deletes the custom provider for Email Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/email/delete-sendgrid-credentials.mdx b/rest-api/notifications-apis/email/delete-sendgrid-credentials.mdx index 464eb5fb2..31277a52c 100644 --- a/rest-api/notifications-apis/email/delete-sendgrid-credentials.mdx +++ b/rest-api/notifications-apis/email/delete-sendgrid-credentials.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/email/v1/providers/sendgrid description: "Deletes the stored SendGrid credentials for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/email/get-custom-provider.mdx b/rest-api/notifications-apis/email/get-custom-provider.mdx index 7d6804710..3f4b494dd 100644 --- a/rest-api/notifications-apis/email/get-custom-provider.mdx +++ b/rest-api/notifications-apis/email/get-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/email/v1/providers/custom description: "Fetches the custom provider for Email Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/email/get-sendgrid-credentials.mdx b/rest-api/notifications-apis/email/get-sendgrid-credentials.mdx index 6e67cf80a..0f21ec62c 100644 --- a/rest-api/notifications-apis/email/get-sendgrid-credentials.mdx +++ b/rest-api/notifications-apis/email/get-sendgrid-credentials.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/email/v1/providers/sendgrid description: "Fetches the SendGrid credentials stored for the app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/email/save-custom-provider.mdx b/rest-api/notifications-apis/email/save-custom-provider.mdx index f6d24ae5c..3585c79a5 100644 --- a/rest-api/notifications-apis/email/save-custom-provider.mdx +++ b/rest-api/notifications-apis/email/save-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: post /notifications/email/v1/providers/custom description: "Saves the custom provider for Email Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/email/save-sendgrid-credentials.mdx b/rest-api/notifications-apis/email/save-sendgrid-credentials.mdx index bd7c50c9e..db2e34eab 100644 --- a/rest-api/notifications-apis/email/save-sendgrid-credentials.mdx +++ b/rest-api/notifications-apis/email/save-sendgrid-credentials.mdx @@ -3,4 +3,4 @@ openapi: post /notifications/email/v1/providers/sendgrid description: "Store the SendGrid credentials for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/email/update-custom-provider.mdx b/rest-api/notifications-apis/email/update-custom-provider.mdx index 865895c7d..6cf551f8a 100644 --- a/rest-api/notifications-apis/email/update-custom-provider.mdx +++ b/rest-api/notifications-apis/email/update-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/email/v1/providers/custom description: "Updates the custom provider for Email Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/email/update-sendgrid-credentials.mdx b/rest-api/notifications-apis/email/update-sendgrid-credentials.mdx index bab8da1df..2f36d4cc4 100644 --- a/rest-api/notifications-apis/email/update-sendgrid-credentials.mdx +++ b/rest-api/notifications-apis/email/update-sendgrid-credentials.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/email/v1/providers/sendgrid description: "Updates the SendGrid credentials for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/add-apns-provider.mdx b/rest-api/notifications-apis/push/add-apns-provider.mdx index 1d6f44ae7..d2b23a0d4 100644 --- a/rest-api/notifications-apis/push/add-apns-provider.mdx +++ b/rest-api/notifications-apis/push/add-apns-provider.mdx @@ -3,4 +3,4 @@ openapi: post /notifications/push/v1/providers/apns description: "Add new APNS provider for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/add-fcm-provider.mdx b/rest-api/notifications-apis/push/add-fcm-provider.mdx index a2c5fcffd..7a9e39763 100644 --- a/rest-api/notifications-apis/push/add-fcm-provider.mdx +++ b/rest-api/notifications-apis/push/add-fcm-provider.mdx @@ -3,4 +3,4 @@ openapi: post /notifications/push/v1/providers/fcm description: "Add new FCM provider for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/change-default-apns-provider.mdx b/rest-api/notifications-apis/push/change-default-apns-provider.mdx index 76f52bf44..7ba5a2611 100644 --- a/rest-api/notifications-apis/push/change-default-apns-provider.mdx +++ b/rest-api/notifications-apis/push/change-default-apns-provider.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/push/v1/providers/apns/default/{providerId} description: "Change the default APNS provider for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/change-default-fcm-provider.mdx b/rest-api/notifications-apis/push/change-default-fcm-provider.mdx index 815f009fe..8a28222d5 100644 --- a/rest-api/notifications-apis/push/change-default-fcm-provider.mdx +++ b/rest-api/notifications-apis/push/change-default-fcm-provider.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/push/v1/providers/fcm/default/{providerId} description: "Change the default FCM provider for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/delete-apns-providers.mdx b/rest-api/notifications-apis/push/delete-apns-providers.mdx index 7a107d559..3aeb733aa 100644 --- a/rest-api/notifications-apis/push/delete-apns-providers.mdx +++ b/rest-api/notifications-apis/push/delete-apns-providers.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/push/v1/providers/apns/{providerId} description: "Delete an APNS provider for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/delete-contact-details.mdx b/rest-api/notifications-apis/push/delete-contact-details.mdx index 2c70e0c17..cb64b07b2 100644 --- a/rest-api/notifications-apis/push/delete-contact-details.mdx +++ b/rest-api/notifications-apis/push/delete-contact-details.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/v1/contact-details description: "Deletes the stored contact details for a given user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/delete-custom-provider.mdx b/rest-api/notifications-apis/push/delete-custom-provider.mdx index 71b5e8746..4427fcdf1 100644 --- a/rest-api/notifications-apis/push/delete-custom-provider.mdx +++ b/rest-api/notifications-apis/push/delete-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/push/v1/providers/custom description: "Deletes the custom provider for Push Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/delete-fcm-provider.mdx b/rest-api/notifications-apis/push/delete-fcm-provider.mdx index c7ac8bac2..a2ead1e0c 100644 --- a/rest-api/notifications-apis/push/delete-fcm-provider.mdx +++ b/rest-api/notifications-apis/push/delete-fcm-provider.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/push/v1/providers/fcm/{providerId} description: "Delete an FCM provider for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/delete-push-token.mdx b/rest-api/notifications-apis/push/delete-push-token.mdx index b27217d1b..2df80df57 100644 --- a/rest-api/notifications-apis/push/delete-push-token.mdx +++ b/rest-api/notifications-apis/push/delete-push-token.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/push/v1/tokens/{pushToken} description: "Deletes the given push token" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/get-contact-details.mdx b/rest-api/notifications-apis/push/get-contact-details.mdx index 9a571eaf0..6b6706f00 100644 --- a/rest-api/notifications-apis/push/get-contact-details.mdx +++ b/rest-api/notifications-apis/push/get-contact-details.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/v1/contact-details description: "Fetches the contact details like Email ID and Phone number for a given user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/get-custom-provider.mdx b/rest-api/notifications-apis/push/get-custom-provider.mdx index 0973a5e27..c25b1ba52 100644 --- a/rest-api/notifications-apis/push/get-custom-provider.mdx +++ b/rest-api/notifications-apis/push/get-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/push/v1/providers/custom description: "Fetches the custom provider for Push Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/get-timezone.mdx b/rest-api/notifications-apis/push/get-timezone.mdx index be81963c5..dbde2e490 100644 --- a/rest-api/notifications-apis/push/get-timezone.mdx +++ b/rest-api/notifications-apis/push/get-timezone.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/v1/preferences/timezone description: "Get the timezone on behalf of the user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/list-apns-providers.mdx b/rest-api/notifications-apis/push/list-apns-providers.mdx index 4ece7cd4c..7cc563896 100644 --- a/rest-api/notifications-apis/push/list-apns-providers.mdx +++ b/rest-api/notifications-apis/push/list-apns-providers.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/push/v1/providers/apns description: "List the configured APNS providers for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/list-fcm-providers.mdx b/rest-api/notifications-apis/push/list-fcm-providers.mdx index 10669154f..f1be0a2fb 100644 --- a/rest-api/notifications-apis/push/list-fcm-providers.mdx +++ b/rest-api/notifications-apis/push/list-fcm-providers.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/push/v1/providers/fcm description: "List the configured FCM providers for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/list-muted-conversations.mdx b/rest-api/notifications-apis/push/list-muted-conversations.mdx index 787eed0a6..028ca1263 100644 --- a/rest-api/notifications-apis/push/list-muted-conversations.mdx +++ b/rest-api/notifications-apis/push/list-muted-conversations.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/v1/preferences/mute description: "List the conversations where notifications have been muted on behalf of the user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/list-preferences.mdx b/rest-api/notifications-apis/push/list-preferences.mdx index 4f5616119..34a4b2686 100644 --- a/rest-api/notifications-apis/push/list-preferences.mdx +++ b/rest-api/notifications-apis/push/list-preferences.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/v1/preferences description: "List the configured preferences for the given user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/list-push-tokens.mdx b/rest-api/notifications-apis/push/list-push-tokens.mdx index ce4227e18..efa36c3af 100644 --- a/rest-api/notifications-apis/push/list-push-tokens.mdx +++ b/rest-api/notifications-apis/push/list-push-tokens.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/push/v1/tokens description: "List push tokens for the given auth token." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/list-settings.mdx b/rest-api/notifications-apis/push/list-settings.mdx index 64aa869ab..5a7aa6659 100644 --- a/rest-api/notifications-apis/push/list-settings.mdx +++ b/rest-api/notifications-apis/push/list-settings.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/v1/settings description: "List preferences, templates and sounds for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/mute-conversations.mdx b/rest-api/notifications-apis/push/mute-conversations.mdx index 3a9c7bf13..42b597831 100644 --- a/rest-api/notifications-apis/push/mute-conversations.mdx +++ b/rest-api/notifications-apis/push/mute-conversations.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/v1/preferences/mute description: "Mute notifications for the conversations on behalf of the given user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/notifications-logs.mdx b/rest-api/notifications-apis/push/notifications-logs.mdx index 21e562edc..275e9a149 100644 --- a/rest-api/notifications-apis/push/notifications-logs.mdx +++ b/rest-api/notifications-apis/push/notifications-logs.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/v1/logs description: "Paginated API to fetch logs for notifications" --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/register-push-token.mdx b/rest-api/notifications-apis/push/register-push-token.mdx index 94837e11c..584f324a7 100644 --- a/rest-api/notifications-apis/push/register-push-token.mdx +++ b/rest-api/notifications-apis/push/register-push-token.mdx @@ -3,4 +3,4 @@ openapi: post /notifications/push/v1/tokens description: "Register a push token for the given auth token." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/reset-preferences.mdx b/rest-api/notifications-apis/push/reset-preferences.mdx index 0f40b4c35..d8d6f4b6b 100644 --- a/rest-api/notifications-apis/push/reset-preferences.mdx +++ b/rest-api/notifications-apis/push/reset-preferences.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/v1/preferences description: "Reset the preferences for the given user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/reset-settings.mdx b/rest-api/notifications-apis/push/reset-settings.mdx index c3a40b42d..57547102f 100644 --- a/rest-api/notifications-apis/push/reset-settings.mdx +++ b/rest-api/notifications-apis/push/reset-settings.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/v1/settings description: "Reset preferences, templates and sounds to default values for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/save-custom-provider.mdx b/rest-api/notifications-apis/push/save-custom-provider.mdx index b8f87da29..009cf57e4 100644 --- a/rest-api/notifications-apis/push/save-custom-provider.mdx +++ b/rest-api/notifications-apis/push/save-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: post /notifications/push/v1/providers/custom description: "Saves the custom provider for Push Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/unmute-conversations.mdx b/rest-api/notifications-apis/push/unmute-conversations.mdx index f2ee2206b..951d9aa7e 100644 --- a/rest-api/notifications-apis/push/unmute-conversations.mdx +++ b/rest-api/notifications-apis/push/unmute-conversations.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/v1/preferences/mute description: "Unmute notifications for the conversations on behalf of the given user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/unregister-push-tokens.mdx b/rest-api/notifications-apis/push/unregister-push-tokens.mdx index c12a5dafb..a2be911d7 100644 --- a/rest-api/notifications-apis/push/unregister-push-tokens.mdx +++ b/rest-api/notifications-apis/push/unregister-push-tokens.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/push/v1/tokens description: "Unregister push token(s) registered for the given auth token." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/update-apns-providers.mdx b/rest-api/notifications-apis/push/update-apns-providers.mdx index cf7893fbe..459d696f5 100644 --- a/rest-api/notifications-apis/push/update-apns-providers.mdx +++ b/rest-api/notifications-apis/push/update-apns-providers.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/push/v1/providers/apns description: "Update existing APNS provider for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/update-contact-details.mdx b/rest-api/notifications-apis/push/update-contact-details.mdx index 98d12877f..bdfee75ea 100644 --- a/rest-api/notifications-apis/push/update-contact-details.mdx +++ b/rest-api/notifications-apis/push/update-contact-details.mdx @@ -3,4 +3,4 @@ openapi: patch /notifications/v1/contact-details description: "Updates the contact details like Email ID and Phone number for a given user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/update-custom-provider.mdx b/rest-api/notifications-apis/push/update-custom-provider.mdx index 0ae257e40..3bf046361 100644 --- a/rest-api/notifications-apis/push/update-custom-provider.mdx +++ b/rest-api/notifications-apis/push/update-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/push/v1/providers/custom description: "Updates the custom provider for Push Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/update-fcm-provider.mdx b/rest-api/notifications-apis/push/update-fcm-provider.mdx index 674d08598..518809895 100644 --- a/rest-api/notifications-apis/push/update-fcm-provider.mdx +++ b/rest-api/notifications-apis/push/update-fcm-provider.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/push/v1/providers/fcm description: "Update existing FCM provider for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/update-preferences.mdx b/rest-api/notifications-apis/push/update-preferences.mdx index 956d13e0f..524ac3fcd 100644 --- a/rest-api/notifications-apis/push/update-preferences.mdx +++ b/rest-api/notifications-apis/push/update-preferences.mdx @@ -3,4 +3,4 @@ openapi: patch /notifications/v1/preferences description: "Update the preference for the given user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/update-settings.mdx b/rest-api/notifications-apis/push/update-settings.mdx index 83d26e0d0..3db257d53 100644 --- a/rest-api/notifications-apis/push/update-settings.mdx +++ b/rest-api/notifications-apis/push/update-settings.mdx @@ -3,4 +3,4 @@ openapi: patch /notifications/v1/settings description: "Update preferences, templates and sounds for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/push/update-timezone.mdx b/rest-api/notifications-apis/push/update-timezone.mdx index 5909031f5..662b05cb1 100644 --- a/rest-api/notifications-apis/push/update-timezone.mdx +++ b/rest-api/notifications-apis/push/update-timezone.mdx @@ -3,4 +3,4 @@ openapi: patch /notifications/v1/preferences/timezone description: "Update the timezone on behalf of the user." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/sms/delete-custom-provider.mdx b/rest-api/notifications-apis/sms/delete-custom-provider.mdx index dc03b8027..f3170015f 100644 --- a/rest-api/notifications-apis/sms/delete-custom-provider.mdx +++ b/rest-api/notifications-apis/sms/delete-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/sms/v1/providers/custom description: "Deletes the custom provider for SMS Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/sms/delete-twilio-credentials.mdx b/rest-api/notifications-apis/sms/delete-twilio-credentials.mdx index a4cdaf3e1..ef6fe46be 100644 --- a/rest-api/notifications-apis/sms/delete-twilio-credentials.mdx +++ b/rest-api/notifications-apis/sms/delete-twilio-credentials.mdx @@ -3,4 +3,4 @@ openapi: delete /notifications/sms/v1/providers/twilio description: "Deletes the stored Twilio credentials for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/sms/get-custom-provider.mdx b/rest-api/notifications-apis/sms/get-custom-provider.mdx index 0f0889a16..825d2830e 100644 --- a/rest-api/notifications-apis/sms/get-custom-provider.mdx +++ b/rest-api/notifications-apis/sms/get-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/sms/v1/providers/custom description: "Fetches the custom provider for SMS Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/sms/get-twilio-credentials.mdx b/rest-api/notifications-apis/sms/get-twilio-credentials.mdx index 39ab70cf0..607ec09e4 100644 --- a/rest-api/notifications-apis/sms/get-twilio-credentials.mdx +++ b/rest-api/notifications-apis/sms/get-twilio-credentials.mdx @@ -3,4 +3,4 @@ openapi: get /notifications/sms/v1/providers/twilio description: "Fetches the Twilio credentials stored for the app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/sms/save-custom-provider.mdx b/rest-api/notifications-apis/sms/save-custom-provider.mdx index e7e33499b..1610e3c64 100644 --- a/rest-api/notifications-apis/sms/save-custom-provider.mdx +++ b/rest-api/notifications-apis/sms/save-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: post /notifications/sms/v1/providers/custom description: "Saves the custom provider for SMS Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/sms/save-twilio-credentials.mdx b/rest-api/notifications-apis/sms/save-twilio-credentials.mdx index 78e81aca0..1c4f20e77 100644 --- a/rest-api/notifications-apis/sms/save-twilio-credentials.mdx +++ b/rest-api/notifications-apis/sms/save-twilio-credentials.mdx @@ -3,4 +3,4 @@ openapi: post /notifications/sms/v1/providers/twilio description: "Store the Twilio credentials for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/sms/update-custom-provider.mdx b/rest-api/notifications-apis/sms/update-custom-provider.mdx index 3dd17b53b..083f82f29 100644 --- a/rest-api/notifications-apis/sms/update-custom-provider.mdx +++ b/rest-api/notifications-apis/sms/update-custom-provider.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/sms/v1/providers/custom description: "Updates the custom provider for SMS Notifications for a given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes). diff --git a/rest-api/notifications-apis/sms/update-twilio-credentials.mdx b/rest-api/notifications-apis/sms/update-twilio-credentials.mdx index dd62a7f76..c128fb92a 100644 --- a/rest-api/notifications-apis/sms/update-twilio-credentials.mdx +++ b/rest-api/notifications-apis/sms/update-twilio-credentials.mdx @@ -3,4 +3,4 @@ openapi: put /notifications/sms/v1/providers/twilio description: "Updates the Twilio credentials for the given app." --- -For the complete error reference, see [Error Guide](/articles/error-guide). +For the complete error reference, see [Error Guide](/rest-api/notifications-apis/error-codes).