Skip to main content
POST
/
forms
/
{id}
/
submissions
Ingest a submission
curl --request POST \
  --url https://formitto.com/v1/forms/{id}/submissions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "formData": {},
  "wcClientCurrent": "<string>"
}
'
{
  "id": 123,
  "formId": 123,
  "formData": {},
  "createdAt": "2023-11-07T05:31:56Z",
  "sourceDomain": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.formitto.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

A Formitto API key created in the dashboard (Settings → API keys). Pass it as Authorization: Bearer fmt_live_....

Headers

Idempotency-Key
string

Optional. A client-chosen unique string (≤256 chars). Within 24h, retrying with the same key replays the original result instead of creating a duplicate submission.

Maximum string length: 256

Path Parameters

id
integer
required

The resource id.

Body

application/json
formData
object
required

Field values (label → value). Max 50 keys, max 50KB serialized.

wcClientCurrent
string | null

Optional WhatConverts attribution cookie value.

Response

Idempotent replay — the original submission for this Idempotency-Key, returned verbatim.

id
integer
required
formId
integer
required
formData
object
required

The submitted field values (label → value).

createdAt
string<date-time>
required
sourceDomain
string | null

The page hostname the submission originated from (null for API ingestion).