{
  "info": {
    "name": "Coda — mcp.ai",
    "description": "REST API for the Coda MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/coda",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "coda_add_a_category_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/category/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "category",
            "for",
            "pack"
          ]
        },
        "description": "Add a publishing category for a given pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"categoryName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_add_a_maker_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/maker/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "maker",
            "for",
            "pack"
          ]
        },
        "description": "Add a maker to a Pack. Makers are users who are displayed as contributors on the Pack's public listing page. You must be an owner or admin of the Pack to add makers. This is typically used to credit c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"loginId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_add_a_permission_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/a/permission/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "a",
            "permission",
            "for",
            "pack"
          ]
        },
        "description": "Create or modify permissions for a given Pack. This action allows you to grant access to a Pack for users or workspaces. If a permission already exists for the specified principal, it will be updated ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"access\": \"\",\n  \"packId\": 0,\n  \"principal\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_add_custom_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/custom/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "custom",
            "domain"
          ]
        },
        "description": "Add a custom domain to a published doc. This action allows you to map a custom domain (like 'docs.yourcompany.com') to a published Coda doc. Before using this action: 1. The doc must be published (use",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"customDocDomain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_add_permission",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/permission",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "permission"
          ]
        },
        "description": "Adds a new permission to the doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"access\": \"\",\n  \"principal\": {},\n  \"suppressEmail\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_begin_content_export",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/begin/content/export",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "begin",
            "content",
            "export"
          ]
        },
        "description": "Initiate an asynchronous export of page content in HTML or Markdown format. This action starts a content export job and returns immediately with a request ID and status URL. The export is processed as",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"outputFormat\": \"\",\n  \"pageIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_content_export_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/content/export/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "content",
            "export",
            "status"
          ]
        },
        "description": "Check the status of a page content export operation. Use this to poll the export status and retrieve the download link when the export completes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"requestId\": \"\",\n  \"pageIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_copy_doc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/copy/doc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "copy",
            "doc"
          ]
        },
        "description": "Creates a copy of an existing Coda document. This action allows you to duplicate a document while optionally specifying a new title and location for the copied document.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"timezone\": \"\",\n  \"folder_id\": \"\",\n  \"source_doc_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_create_a_new_pack_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/new/pack/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "new",
            "pack",
            "release"
          ]
        },
        "description": "Creates a new Pack release based on an existing Pack version.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"packVersion\": \"\",\n  \"releaseNotes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_create_a_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "page"
          ]
        },
        "description": "Create a new page in a doc. Note that creating a page requires you to be a Doc Maker in the applicable workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"docId\": \"\",\n  \"iconName\": \"\",\n  \"imageUrl\": \"\",\n  \"subtitle\": \"\",\n  \"pageContent\": {},\n  \"parentPageId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_create_doc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/doc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "doc"
          ]
        },
        "description": "Creates a new Coda doc, optionally copying an existing doc. Note that creating a doc requires you to be a Doc Maker in the applicable workspace (or be auto-promoted to one).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"folderId\": \"\",\n  \"timezone\": \"\",\n  \"sourceDoc\": \"\",\n  \"initialPage\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder"
          ]
        },
        "description": "Creates a new folder in a Coda workspace. Use this action to organize documents by creating folders within a workspace. Folders help structure content and make it easier to navigate and manage documen",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\",\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_create_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "pack"
          ]
        },
        "description": "Creates a new Pack in Coda. A Pack is a container for custom functionality that extends Coda's capabilities. This endpoint registers a new Pack and returns its ID. After creation, you'll need to separ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\",\n  \"workspaceId\": \"\",\n  \"sourcePackId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_create_pack_invitation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/pack/invitation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "pack",
            "invitation"
          ]
        },
        "description": "Create an invitation for a user to access a Pack. This action sends an invitation to the specified email address, granting them access to the Pack at the specified access level. The invitee will recei",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"access\": \"\",\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_a_category_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/category/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "category",
            "for",
            "pack"
          ]
        },
        "description": "Delete a publishing category for a given pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"categoryName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_a_maker_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/maker/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "maker",
            "for",
            "pack"
          ]
        },
        "description": "Removes a maker from a Pack's maker list. The maker will no longer be displayed as a contributor on the Pack's public page. This action requires admin access to the Pack. The operation returns success",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"loginId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_a_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "page"
          ]
        },
        "description": "Deletes the specified page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"pageIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_a_permission_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/permission/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "permission",
            "for",
            "pack"
          ]
        },
        "description": "Delete user, workspace, or global permissions for a given Pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"permissionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_doc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/doc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "doc"
          ]
        },
        "description": "Permanently deletes a Coda doc. This action permanently removes the specified doc and all its contents including pages, tables, formulas, and data. The deletion is processed asynchronously and returns",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "folder"
          ]
        },
        "description": "Tool to delete a folder in Coda. Use when you need to permanently remove a folder. This operation deletes the specified folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_multiple_rows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/multiple/rows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "multiple",
            "rows"
          ]
        },
        "description": "Deletes multiple rows from a Coda table or view. This action queues the specified rows for deletion and returns immediately with a 202 status. The actual deletion is processed asynchronously and typic",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"rowIds\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "pack"
          ]
        },
        "description": "Delete a given Pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_pack_listing_draft",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/pack/listing/draft",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "pack",
            "listing",
            "draft"
          ]
        },
        "description": "Delete the listing draft for a Pack, discarding any unsaved changes. Tool to delete the listing draft for a Pack, discarding any unsaved changes. Use when you need to discard a draft listing for a Pac",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_page_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/page/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "page",
            "content"
          ]
        },
        "description": "Tool to delete content from a Coda page. Use when you need to remove specific elements or all content from a page. This endpoint returns a 202 status code indicating the deletion has been queued and w",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"doc_id\": \"\",\n  \"element_ids\": \"\",\n  \"page_id_or_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_permission",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/permission",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "permission"
          ]
        },
        "description": "Deletes an existing permission from a Coda document. This action permanently removes access for a specific user, group, or domain that was previously granted to the document. To use this action, you m",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"permissionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_delete_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "row"
          ]
        },
        "description": "Deletes the specified row from the table or view. This endpoint will always return a 202, so long as the row exists and is accessible (and the update is structurally valid). Row deletions are generall",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"rowIdOrName\": \"\",\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_deletes_a_custom_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/deletes/a/custom/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "deletes",
            "a",
            "custom",
            "domain"
          ]
        },
        "description": "Deletes a custom domain from a published doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"customDocDomain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_fetch_grouped_logs_by_pack_org_root_ingestion_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/grouped/logs/by/pack/org/root/ingestion/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "grouped",
            "logs",
            "by",
            "pack",
            "org",
            "root",
            "ingestion",
            "id"
          ]
        },
        "description": "Retrieve the grouped logs of a Pack ingestion for debugging purposes. This action is used with Coda Brain (Enterprise feature) to retrieve and debug logs from Pack ingestion processes. It provides det",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"packId\": 0,\n  \"pageToken\": \"\",\n  \"afterTimestamp\": \"\",\n  \"organizationId\": \"\",\n  \"beforeTimestamp\": \"\",\n  \"rootIngestionId\": \"\",\n  \"ingestionExecutionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_fetch_ingestion_executions_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/ingestion/executions/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "ingestion",
            "executions",
            "for",
            "pack"
          ]
        },
        "description": "Retrieve the ingestion execution ids of a root ingestion for debugging purpose. This action is typically used with Coda Brain (Enterprise feature) to track and debug data ingestion processes from exte",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"packId\": 0,\n  \"pageToken\": \"\",\n  \"datasource\": \"\",\n  \"executionType\": \"\",\n  \"afterTimestamp\": \"\",\n  \"csbIngestionId\": \"\",\n  \"organizationId\": \"\",\n  \"beforeTimestamp\": \"\",\n  \"ingestionStatus\": \"\",\n  \"rootIngestionId\": \"\",\n  \"csbIngestionExecutionId\": \"\",\n  \"includeDeletedIngestions\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_a_column",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/column",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "column"
          ]
        },
        "description": "Returns detailed information about a specific column in a Coda table. Retrieves column metadata including: - Column ID, name, type, and href - Format details (type, isArray, label, action, displayType",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"tableIdOrName\": \"\",\n  \"columnIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_a_control",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/control",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "control"
          ]
        },
        "description": "Returns info on a control.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"controlIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_a_formula",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/formula",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "formula"
          ]
        },
        "description": "Returns info on a formula.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"formulaIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_a_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "page"
          ]
        },
        "description": "Returns details about a page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"pageIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_a_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "row"
          ]
        },
        "description": "Retrieves detailed information about a specific row in a Coda table, including all cell values, metadata (creation/update timestamps), and parent table information. Use this action when you need to re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"rowIdOrName\": \"\",\n  \"valueFormat\": \"\",\n  \"tableIdOrName\": \"\",\n  \"useColumnNames\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_a_single_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/single/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "single",
            "pack"
          ]
        },
        "description": "Retrieves detailed information about a specific Coda Pack by its ID. Returns pack metadata including name, description, workspace, logo URL, categories, rate limits, and configuration settings. Only a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_a_table",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/a/table",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "a",
            "table"
          ]
        },
        "description": "Returns details about a specific table or view.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"tableIdOrName\": \"\",\n  \"useUpdatedTableLayouts\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_acl_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/acl/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "acl",
            "settings"
          ]
        },
        "description": "Returns settings associated with ACLs for this Coda doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_analytics_last_updated_day",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/analytics/last/updated/day",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "analytics",
            "last",
            "updated",
            "day"
          ]
        },
        "description": "Returns days based on Pacific Standard Time when analytics were last updated.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_detailed_listing_information_for_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/detailed/listing/information/for/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "detailed",
            "listing",
            "information",
            "for",
            "a",
            "pack"
          ]
        },
        "description": "Get comprehensive public listing information for a Coda Pack. Returns detailed metadata about a Pack including its description, logo, categories, makers, pricing, version information, and user access ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"packId\": 0,\n  \"workspaceId\": \"\",\n  \"installContext\": \"\",\n  \"releaseChannel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_doc_analytics_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/doc/analytics/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "doc",
            "analytics",
            "summary"
          ]
        },
        "description": "Returns aggregated analytics summary data across documents, including session counts, installs, copies, reads, and conversions. Can be filtered by publication status, date range, and workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sinceDate\": \"\",\n  \"untilDate\": \"\",\n  \"isPublished\": false,\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_doc_categories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/doc/categories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "doc",
            "categories"
          ]
        },
        "description": "Retrieves the list of all available doc categories in Coda. These categories can be used when publishing docs to help users discover content.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "folder"
          ]
        },
        "description": "Tool to get metadata about a Coda folder. Use when you need to retrieve information about a specific folder including its name, description, icon, workspace, and editing permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folderId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_info_about_a_doc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/info/about/a/doc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "info",
            "about",
            "a",
            "doc"
          ]
        },
        "description": "Retrieves comprehensive metadata for a specific Coda document. This action returns detailed information about a document including its name, owner, creation/update timestamps, workspace and folder loc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_mutation_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mutation/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mutation",
            "status"
          ]
        },
        "description": "Checks whether an asynchronous mutation operation has been applied to a Coda document. When you perform mutations like inserting/updating rows, deleting rows, or pushing buttons, the Coda API returns ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"requestId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_pack_analytics_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pack/analytics/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pack",
            "analytics",
            "summary"
          ]
        },
        "description": "Returns summarized analytics data for Packs the user can edit. This endpoint provides aggregate statistics including: - Total Pack invocations across all accessible Packs - Total document installation",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packIds\": \"\",\n  \"sinceDate\": \"\",\n  \"untilDate\": \"\",\n  \"isPublished\": false,\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_sharing_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sharing/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sharing",
            "metadata"
          ]
        },
        "description": "Returns metadata associated with sharing for this Coda doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_the_difference_between_two_pack_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/difference/between/two/pack/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "difference",
            "between",
            "two",
            "pack",
            "versions"
          ]
        },
        "description": "Gets information about the difference between the specified previous version and next version of a Pack. This endpoint compares two semantic versions of a Pack and returns the differences. Both versio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"basePackVersion\": \"\",\n  \"targetPackVersion\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_the_next_valid_version_for_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/next/valid/version/for/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "next",
            "valid",
            "version",
            "for",
            "a",
            "pack"
          ]
        },
        "description": "Get the next valid version number for a Pack based on the proposed metadata. This endpoint validates the proposed Pack metadata and determines what the next semantic version number should be. It retur",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"sdkVersion\": \"\",\n  \"proposedMetadata\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_the_source_code_for_a_pack_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/the/source/code/for/a/pack/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "the",
            "source",
            "code",
            "for",
            "a",
            "pack",
            "version"
          ]
        },
        "description": "Retrieves temporary download URLs for the source code files of a specific Pack version. Returns pre-signed, time-limited URLs to download the original TypeScript/JavaScript source code. Useful for rev",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"packVersion\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_get_user_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "info"
          ]
        },
        "description": "Returns basic info about the current user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_gets_custom_doc_domains_providers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/gets/custom/doc/domains/providers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "gets",
            "custom",
            "doc",
            "domains",
            "providers"
          ]
        },
        "description": "Identifies the domain registrar/provider for a given domain name by performing a DNS lookup. Returns the provider name (e.g., GoDaddy, Namecheap) or 'Other' if unidentified. Useful for determining whe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customDocDomain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_gets_the_json_schema_for_pack_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/gets/the/json/schema/for/pack/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "gets",
            "the",
            "json",
            "schema",
            "for",
            "pack",
            "configuration"
          ]
        },
        "description": "Retrieves the JSON Schema that defines the configuration options available for a specific Coda Pack. This schema describes how the Pack can be customized, including connection settings, OAuth scopes, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_available_docs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/available/docs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "available",
            "docs"
          ]
        },
        "description": "Returns a list of Coda docs accessible by the user, and which they have opened at least once. These are returned in the same order as on the docs page: reverse chronological by the latest event releva",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"isOwner\": false,\n  \"folderId\": \"\",\n  \"inGallery\": false,\n  \"isStarred\": false,\n  \"pageToken\": \"\",\n  \"sourceDoc\": \"\",\n  \"isPublished\": false,\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_categories_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/categories/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "categories",
            "for",
            "pack"
          ]
        },
        "description": "List all publishing categories associated with a specific Coda Pack. Categories help users discover packs by organizing them into topics like 'Project Management', 'Marketing', 'Engineering', etc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_columns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/columns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "columns"
          ]
        },
        "description": "Returns a list of columns in a table.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"pageToken\": \"\",\n  \"visibleOnly\": false,\n  \"tableIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_controls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/controls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "controls"
          ]
        },
        "description": "Returns a list of controls in a Coda doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"sortBy\": \"\",\n  \"pageToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_custom_doc_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/custom/doc/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "custom",
            "doc",
            "domains"
          ]
        },
        "description": "List all custom domains configured for a published Coda doc. Custom domains allow you to publish your doc at your own domain (e.g., www.example.com) instead of the default Coda.io URL. Returns an empt",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_doc_analytics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/doc/analytics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "doc",
            "analytics"
          ]
        },
        "description": "Returns analytics data for accessible documents. Provides detailed metrics including views, sessions (desktop/mobile/other), copies, likes, and AI credits usage. Supports filtering by workspace, date ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"scale\": \"\",\n  \"docIds\": \"\",\n  \"orderBy\": \"\",\n  \"direction\": \"\",\n  \"pageToken\": \"\",\n  \"sinceDate\": \"\",\n  \"untilDate\": \"\",\n  \"isPublished\": false,\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_featured_docs_for_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/featured/docs/for/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "featured",
            "docs",
            "for",
            "a",
            "pack"
          ]
        },
        "description": "Returns a list of featured docs for a Pack. Featured docs are example or template documents that showcase how to use the Pack. Each entry includes the document reference (id, type, href, browserLink),",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "folders"
          ]
        },
        "description": "Tool to list folders accessible by the user. Returns a list of folders with their metadata including ID, name, workspace, and icon. Use when you need to discover available folders or find a specific f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"is_starred\": false,\n  \"page_token\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_formulas",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/formulas",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "formulas"
          ]
        },
        "description": "Returns a list of named formulas in a Coda doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"sortBy\": \"\",\n  \"pageToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_makers_for_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/makers/for/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "makers",
            "for",
            "pack"
          ]
        },
        "description": "List makers for a given pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_pack_analytics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pack/analytics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pack",
            "analytics"
          ]
        },
        "description": "Returns analytics data for Packs the user can edit. This endpoint retrieves analytics information for Packs where the authenticated user has edit permissions. Analytics include installation counts, in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"scale\": \"\",\n  \"orderBy\": \"\",\n  \"packIds\": \"\",\n  \"direction\": \"\",\n  \"pageToken\": \"\",\n  \"sinceDate\": \"\",\n  \"untilDate\": \"\",\n  \"isPublished\": false,\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_pack_formula_analytics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pack/formula/analytics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pack",
            "formula",
            "analytics"
          ]
        },
        "description": "Returns analytics data for Pack formulas.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"scale\": \"\",\n  \"packId\": 0,\n  \"orderBy\": \"\",\n  \"direction\": \"\",\n  \"pageToken\": \"\",\n  \"sinceDate\": \"\",\n  \"untilDate\": \"\",\n  \"packFormulaNames\": \"\",\n  \"packFormulaTypes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_packs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/packs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "packs"
          ]
        },
        "description": "Get the list of accessible Packs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"sortBy\": \"\",\n  \"direction\": \"\",\n  \"pageToken\": \"\",\n  \"accessType\": \"\",\n  \"accessTypes\": \"\",\n  \"onlyWorkspaceId\": \"\",\n  \"excludePublicPacks\": false,\n  \"parentWorkspaceIds\": \"\",\n  \"excludeWorkspaceAcls\": false,\n  \"excludeIndividualAcls\": false,\n  \"includeBrainOnlyPacks\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_page_analytics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/page/analytics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "page",
            "analytics"
          ]
        },
        "description": "Returns page-level analytics data for pages within a document. Shows metrics like views and sessions per page over time. **Important:** This endpoint requires the document to be in an Enterprise works",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"pageToken\": \"\",\n  \"sinceDate\": \"\",\n  \"untilDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_page_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/page/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "page",
            "content"
          ]
        },
        "description": "Tool to list page content. Returns the content of the specified page. Use when you need to retrieve the content elements from a Coda page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"doc_id\": \"\",\n  \"page_token\": \"\",\n  \"content_format\": \"\",\n  \"page_id_or_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pages"
          ]
        },
        "description": "Returns a list of pages in a Coda doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"pageToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_permissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/permissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "permissions"
          ]
        },
        "description": "Returns a list of permissions for this Coda doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"pageToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_permissions_for_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/permissions/for/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "permissions",
            "for",
            "a",
            "pack"
          ]
        },
        "description": "Get user, workspace, and/or global permissions for a given Pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_table_rows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/table/rows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "table",
            "rows"
          ]
        },
        "description": "Retrieves rows from a specific table within a Coda document. This endpoint allows you to fetch data from your Coda tables programmatically, enabling integration with other systems or data analysis too",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"query\": \"\",\n  \"sortBy\": \"\",\n  \"pageToken\": \"\",\n  \"syncToken\": \"\",\n  \"valueFormat\": \"\",\n  \"visibleOnly\": false,\n  \"tableIdOrName\": \"\",\n  \"useColumnNames\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_tables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tables"
          ]
        },
        "description": "Returns a list of tables in a Coda doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"sortBy\": \"\",\n  \"pageToken\": \"\",\n  \"tableTypes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_the_pack_listings_accessible_to_a_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/the/pack/listings/accessible/to/a/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "the",
            "pack",
            "listings",
            "accessible",
            "to",
            "a",
            "user"
          ]
        },
        "description": "Get listings of public Packs and Packs created by you.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"sortBy\": \"\",\n  \"orderBy\": \"\",\n  \"packIds\": \"\",\n  \"direction\": \"\",\n  \"pageToken\": \"\",\n  \"installContext\": \"\",\n  \"onlyWorkspaceId\": \"\",\n  \"packAccessTypes\": \"\",\n  \"excludePublicPacks\": false,\n  \"parentWorkspaceIds\": \"\",\n  \"excludeWorkspaceAcls\": false,\n  \"excludeIndividualAcls\": false,\n  \"includeBrainOnlyPacks\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_the_releases_for_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/the/releases/for/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "the",
            "releases",
            "for",
            "a",
            "pack"
          ]
        },
        "description": "Get the list of releases of a Pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"packId\": 0,\n  \"pageToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_the_versions_for_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/the/versions/for/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "the",
            "versions",
            "for",
            "a",
            "pack"
          ]
        },
        "description": "Get the list of versions of a Pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"packId\": 0,\n  \"pageToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_user_pack_invitations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/pack/invitations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "pack",
            "invitations"
          ]
        },
        "description": "Tool to get pending Pack invitations for the authenticated user. Use when you need to retrieve invitations to collaborate on Packs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"pageToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_workspace_roles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workspace/roles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workspace",
            "roles"
          ]
        },
        "description": "Returns a list of the counts of users over time by role for the workspace. Note: This endpoint requires a workspace that belongs to an organization (Enterprise feature). Workspaces not belonging to an",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_list_workspace_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workspace/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workspace",
            "users"
          ]
        },
        "description": "Returns a list of members in the given workspace. This list will be ordered with the requesting user first and then ordered by role. Note: This endpoint requires a workspace that belongs to an organiz",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageToken\": \"\",\n  \"workspaceId\": \"\",\n  \"includedRoles\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_pack_asset_upload_complete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pack/asset/upload/complete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pack",
            "asset",
            "upload",
            "complete"
          ]
        },
        "description": "Notify Coda that the Pack asset upload to S3 is complete. This action is the final step in the Pack asset upload workflow: 1. Call upload_a_pack_asset to get a signed S3 URL and packAssetUploadedPathN",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"packAssetId\": \"\",\n  \"packAssetType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_pack_source_code_upload_complete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pack/source/code/upload/complete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pack",
            "source",
            "code",
            "upload",
            "complete"
          ]
        },
        "description": "Notify Coda that the Pack source code upload to S3 is complete. This action is the final step in the Pack source code upload workflow: 1. Call upload_pack_source_code to get a signed S3 URL 2. Upload ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"codeHash\": \"\",\n  \"filename\": \"\",\n  \"packVersion\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_pack_version_upload_complete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pack/version/upload/complete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pack",
            "version",
            "upload",
            "complete"
          ]
        },
        "description": "Mark a Pack version upload as complete to finalize the Pack version creation. This action is part of a multi-step workflow for creating Pack versions: 1. First, register a new Pack version using the '",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"notes\": \"\",\n  \"packId\": 0,\n  \"source\": \"\",\n  \"packVersion\": \"\",\n  \"allowOlderSdkVersion\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_patch_the_system_connection_credentials_of_the_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/the/system/connection/credentials/of/the/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "the",
            "system",
            "connection",
            "credentials",
            "of",
            "the",
            "pack"
          ]
        },
        "description": "Patch the system connection credentials of the Pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"credentials\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_publish_doc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/publish/doc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "publish",
            "doc"
          ]
        },
        "description": "Update publish settings for a doc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"slug\": \"\",\n  \"docId\": \"\",\n  \"earnCredit\": false,\n  \"discoverable\": false,\n  \"categoryNames\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_push_a_button",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/push/a/button",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "push",
            "a",
            "button"
          ]
        },
        "description": "Pushes a button on a row in a table. Authorization note: This action is available to API tokens that are authorized to write to the table. However, the underlying button can perform any action on the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"rowIdOrName\": \"\",\n  \"tableIdOrName\": \"\",\n  \"columnIdOrName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_register_pack_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/register/pack/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "register",
            "pack",
            "version"
          ]
        },
        "description": "Registers a new Pack version and obtains a signed upload URL. This is the first step in the Pack version upload workflow. It registers a new version with Coda and returns a pre-signed S3 URL along wit",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"bundleHash\": \"\",\n  \"packVersion\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_resolve_browser_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/resolve/browser/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "resolve",
            "browser",
            "link"
          ]
        },
        "description": "Given a browser link to a Coda object, attempts to find it and return metadata that can be used to get more info on it. Returns a 400 if the URL does not appear to be a Coda URL or a 404 if the resour",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"degradeGracefully\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_retrieve_the_grouped_logs_of_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/the/grouped/logs/of/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "the",
            "grouped",
            "logs",
            "of",
            "a",
            "pack"
          ]
        },
        "description": "Retrieve grouped execution logs for a Pack in a specific Coda document. This endpoint returns Pack invocation logs grouped by execution, showing timestamps, status (success/failed), and detailed log e",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"packId\": 0,\n  \"pageToken\": \"\",\n  \"afterTimestamp\": \"\",\n  \"beforeTimestamp\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_retrieve_the_information_for_a_specific_log",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/the/information/for/a/specific/log",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "the",
            "information",
            "for",
            "a",
            "specific",
            "log"
          ]
        },
        "description": "Retrieve detailed information for a specific log entry from a Pack ingestion. This action retrieves comprehensive log details for Coda Brain (Enterprise feature) ingestion debugging. It provides in-de",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"logId\": \"\",\n  \"packId\": 0,\n  \"detailsKey\": \"\",\n  \"organizationId\": \"\",\n  \"rootIngestionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_retrieve_the_logs_of_a_ingestion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/the/logs/of/a/ingestion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "the",
            "logs",
            "of",
            "a",
            "ingestion"
          ]
        },
        "description": "Retrieve the logs of a Ingestion for debugging purpose. This action is typically used with Coda Brain (Enterprise feature) to track and debug data ingestion processes from external sources via Packs. ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"packId\": 0,\n  \"logTypes\": \"\",\n  \"pageToken\": \"\",\n  \"requestIds\": \"\",\n  \"afterTimestamp\": \"\",\n  \"organizationId\": \"\",\n  \"beforeTimestamp\": \"\",\n  \"rootIngestionId\": \"\",\n  \"ingestionExecutionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_retrieve_the_logs_of_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/the/logs/of/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "the",
            "logs",
            "of",
            "a",
            "pack"
          ]
        },
        "description": "Retrieve the execution logs of a Pack within a specific document for debugging purposes. Note: Logs are typically retained for approximately 2 weeks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"docId\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"packId\": 0,\n  \"logTypes\": \"\",\n  \"pageToken\": \"\",\n  \"requestIds\": \"\",\n  \"afterTimestamp\": \"\",\n  \"beforeTimestamp\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_retrieve_the_oauth_configuration_of_the_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/the/oauth/configuration/of/the/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "the",
            "oauth",
            "configuration",
            "of",
            "the",
            "pack"
          ]
        },
        "description": "Retrieve the OAuth configuration of the Pack for display purpose. Secrets will be returned with masks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_retrieve_the_system_connection_metadata_of_the_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/the/system/connection/metadata/of/the/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "the",
            "system",
            "connection",
            "metadata",
            "of",
            "the",
            "pack"
          ]
        },
        "description": "Retrieve the system connection metadata of a Pack. This endpoint returns metadata about a Pack's system-level authentication configuration, where the Pack maker's credentials are used for all users. N",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_search_principals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/principals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "principals"
          ]
        },
        "description": "Search for users and groups (principals) that a Coda document can be shared with. This action searches across the workspace for principals matching the query term. The search is case-insensitive and m",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_set_the_oauth_configurations_of_the_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/the/oauth/configurations/of/the/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "the",
            "oauth",
            "configurations",
            "of",
            "the",
            "pack"
          ]
        },
        "description": "Set OAuth2 client credentials (client ID, secret, redirect URI) for a Pack. Prerequisites: The Pack must have OAuth2 authentication defined in its source code using setUserAuthentication() with author",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"clientId\": \"\",\n  \"redirectUri\": \"\",\n  \"clientSecret\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_set_the_system_connection_credentials_of_the_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/the/system/connection/credentials/of/the/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "the",
            "system",
            "connection",
            "credentials",
            "of",
            "the",
            "pack"
          ]
        },
        "description": "Set the system connection credentials of the Pack. This endpoint completely replaces the existing system connection credentials for a Pack. System connection credentials are used when a Pack is config",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"credentials\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_trigger_automation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/trigger/automation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "trigger",
            "automation"
          ]
        },
        "description": "Triggers a webhook-invoked automation in a Coda doc. This action triggers an automation that has been configured with \"Webhook invoked\" as its trigger type. When triggered, the automation will execute",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"ruleId\": \"\",\n  \"payload\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_unpublish_doc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unpublish/doc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unpublish",
            "doc"
          ]
        },
        "description": "Unpublishes a Coda document, removing it from public access. This action removes the document from the Coda Gallery and makes it private to the workspace. The operation succeeds even if the document i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_update_a_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "page"
          ]
        },
        "description": "Update properties for a page. Note that updating a page title or icon requires you to be a Doc Maker in the applicable workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"docId\": \"\",\n  \"iconName\": \"\",\n  \"imageUrl\": \"\",\n  \"isHidden\": false,\n  \"subtitle\": \"\",\n  \"pageIdOrName\": \"\",\n  \"contentUpdate\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_update_acl_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/acl/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "acl",
            "settings"
          ]
        },
        "description": "Update access control list (ACL) settings for a Coda document. This action allows you to control sharing and permission settings: - Whether editors can manage document permissions - Whether viewers ca",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"allowCopying\": false,\n  \"allowViewersToRequestEditing\": false,\n  \"allowEditorsToChangePermissions\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_update_an_existing_pack_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/existing/pack/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "existing",
            "pack",
            "release"
          ]
        },
        "description": "Update the release notes of an existing Pack release. Use this to modify the description and changelog information displayed to users who have installed or are considering installing your Pack.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"releaseNotes\": \"\",\n  \"packReleaseId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_update_doc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/doc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "doc"
          ]
        },
        "description": "Updates metadata for a Coda document, including its title and icon. This action allows you to modify: - Document title/name - Document icon Note: Updating a doc title requires you to be a Doc Maker in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"title\": \"\",\n  \"iconName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_update_featured_docs_for_a_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/featured/docs/for/a/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "featured",
            "docs",
            "for",
            "a",
            "pack"
          ]
        },
        "description": "Create or replace the featured docs for a Pack. Featured docs are example or template documents that showcase how to use the Pack. This action replaces the entire list of featured docs (it does not ap",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"packId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_update_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "folder"
          ]
        },
        "description": "Tool to update folder metadata in Coda. Use when you need to modify the name or description of an existing folder. Note that some folder types (like personal folders) cannot be edited.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"folder_id\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_update_pack",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/pack",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "pack"
          ]
        },
        "description": "Update an existing Pack for non-versioned fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"packId\": 0,\n  \"description\": \"\",\n  \"logoAssetId\": \"\",\n  \"coverAssetId\": \"\",\n  \"supportEmail\": \"\",\n  \"exampleImages\": \"\",\n  \"privacyPolicyUrl\": \"\",\n  \"shortDescription\": \"\",\n  \"termsOfServiceUrl\": \"\",\n  \"sourceCodeVisibility\": \"\",\n  \"overallRateLimit__intervalSeconds\": 0,\n  \"overallRateLimit__operationsPerInterval\": 0,\n  \"perConnectionRateLimit__intervalSeconds\": 0,\n  \"perConnectionRateLimit__operationsPerInterval\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_update_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "row"
          ]
        },
        "description": "DEPRECATED: Use CODA_UPSERT_ROWS instead. Tool to update an existing row in a Coda table. Use when you need to modify specific cell values in a row. This endpoint returns a 202 status code indicating ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"row\": {},\n  \"doc_id\": \"\",\n  \"row_id_or_name\": \"\",\n  \"disable_parsing\": false,\n  \"table_id_or_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_updates_a_custom_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/updates/a/custom/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "updates",
            "a",
            "custom",
            "domain"
          ]
        },
        "description": "Updates properties of a document's custom domain.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docId\": \"\",\n  \"customDocDomain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_updates_user_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/updates/user/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "updates",
            "user",
            "role"
          ]
        },
        "description": "Updates the workspace user role of a user that matches the parameters. Only succeeds if the requesting user has admin permissions in the workspace. **Requirements:** - The workspace must belong to an ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"newRole\": \"\",\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_upload_a_pack_asset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/a/pack/asset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "a",
            "pack",
            "asset"
          ]
        },
        "description": "Request a signed s3 URL to upload your Pack asset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"filename\": \"\",\n  \"mimeType\": \"\",\n  \"imageHash\": \"\",\n  \"packAssetType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_upload_pack_source_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/pack/source/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "pack",
            "source",
            "code"
          ]
        },
        "description": "Request a signed s3 URL to upload your Pack source code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"packId\": 0,\n  \"filename\": \"\",\n  \"packVersion\": \"\",\n  \"payloadHash\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "coda_upsert_rows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/rows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "rows"
          ]
        },
        "description": "This tool allows you to insert new rows into a Coda table or update existing ones based on specified key columns. This is particularly useful for synchronizing data or ensuring records are up-to-date ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rows\": \"\",\n  \"doc_id\": \"\",\n  \"key_columns\": \"\",\n  \"row_id_or_name\": \"\",\n  \"disable_parsing\": false,\n  \"table_id_or_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}