Coda
Connect to your users' Coda accounts
You'll need the following information to set up your Coda account with Paragon Connect:
- Coda API Token
This is an API-only integration - workflow actions for this integration are still in development. You can still connect user accounts, build workflows, and access the API for this integration.
Once your users have connected their Coda account, you can use the Paragon SDK to access the Coda API on behalf of connected users.
Any Coda API endpoints can be accessed with the Paragon SDK as shown in this example.
// You can find your project ID in the Overview tab of any Integration
// Authenticate the user
paragon.authenticate(<ProjectId>, <UserToken>);
// Create a Document
paragon.request("coda", "/docs", {
method: "POST",
body: {
"title": "Project Tracker",
"sourceDoc": "iJKlm_noPq",
"timezone": "America/Los_Angeles",
"folderId": "fl-ABcdEFgHJi"
}
});
// Get Documents
paragon.request("coda", "/docs", {
method: "GET"
});
Once your Coda account is connected, you use the Coda Request step to access any of Coda's API endpoints without the authentication piece.
When creating or updating records in Coda, you can reference data from previous steps by typing
{{
to invoke the variable menu.Last modified 30d ago