Search Docs…

Search Docs…

Reference

Saving to Coda

Overview

This guide explains how to integrate Arch surveys with Coda to store survey responses in a Coda table automatically.


Setting Up Your Coda Table
  1. Create a New Coda Table:

    • Log in to Coda and create a new document.

    • Add a Table to store survey responses.

  2. Define Column Titles:

    • Each survey question should be a separate column.

    • Ensure each column is a Text type.

    • Example Columns:

      • "How satisfied are you with our service?"

      • "Would you recommend us?"

      • "Additional feedback"


Getting Coda API Credentials
  1. Find Your API Token:

  2. Find Your Coda Document ID:

    • Open your document in Coda.

    • The Document ID is in the URL: https://coda.io/d/Your-Document-Name_d1234567890abcdef1234567/.

    • Document ID: d1234567890abcdef1234567

  3. Find Your Table ID:

    • Open your table in Coda.

    • Click Options > Table ID.

    • Copy the Table ID.


Example Usage
let codaAPIKey = "YOUR_CODA_API_KEY"
let docID = "YOUR_DOC_ID"
let tableID = "YOUR_TABLE_ID"

saveSurveyToCoda(surveyResults: surveyResults, codaAPIKey: codaAPIKey, docID: docID, tableID: tableID)


Summary
  • Create a Coda Table and add columns for each survey question.

  • Get your Coda API Key, Document ID, and Table ID.

  • Use the provided Swift function to send responses to Coda automatically.

🚀 Done! Your survey responses are now saved in Coda!