SubmissionList

A cursor-paginated page of submissions.

  • data
    Type: array object[] · Submission[]
    required

    The submissions on this page.

    One answer set submitted to a form. Readable only by the form’s owner.

    • createdAt
      Type: string
      required

      ISO 8601 timestamp of when the submission was received.

    • data
      Type: object
      required

      The respondent’s answers as a { fieldKey: value } map. Value types follow each field’s type (string, number, boolean, or array of strings), and match the form’s submission body schema.

    • formId
      Type: string
      required

      The id of the form this submission was made to.

    • id
      Type: string
      required

      Unique submission identifier (prefixed sub_).

  • nextCursor
    Type: string | null
    required

    Cursor for the next page, or null when there are no more results. Also exposed as an RFC 8288 Link: …; rel="next" header.