Read your OWN submission to a form
ic_forms_my_submissionThe status of one submission — YOUR human's, never anybody else's. No token required. Two ways in: a signed-in identity resolves its own record with no id at all, or submission_id plus the claim_token handed back once at submit time opens the record that token belongs to. An id ALONE never works: ids travel through URLs and chat logs, and if an id were a credential every stranger's answers would be readable by anyone who ever saw a link. A wrong id, a wrong token and an id that was never issued all return the same found: false, so this cannot be used to test which ids exist. What comes back is status, dates and failed gates — never the answers as stored, never the reviewer's private note. Args: { form_id, submission_id?, claim_token? }. Returns: { ok, found, submission? }. No auth required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| form_id | Yes | Which form. | |
| claim_token | No | The one-time token returned at submit. Must be sent WITH submission_id; either alone does nothing. | |
| submission_id | No | Needed only when reading by claim token rather than by identity. |