Feathery · Example Payload

Feathery Submission Example

FormsForm BuilderMulti-Step FormsDocument IntelligenceAIFinancial ServicesInsuranceWealth ManagementeSignatureWorkflowsData IntakeSubmissionsPaymentsAuthentication

Feathery Submission Example is an example object payload from Feathery, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

user_idform_idsubmission_startlast_submittedcompletedvalues

Example Payload

Raw ↑
{
  "user_id": "user-abc123",
  "form_id": "contact-us-form",
  "submission_start": "2026-06-10T10:00:00Z",
  "last_submitted": "2026-06-10T10:05:32Z",
  "completed": true,
  "values": [
    {
      "id": "first_name",
      "type": "text_field",
      "value": "Jane",
      "created_at": "2026-06-10T10:01:00Z",
      "updated_at": "2026-06-10T10:01:00Z"
    },
    {
      "id": "last_name",
      "type": "text_field",
      "value": "Doe",
      "created_at": "2026-06-10T10:01:30Z",
      "updated_at": "2026-06-10T10:01:30Z"
    },
    {
      "id": "email_address",
      "type": "email",
      "value": "jane.doe@example.com",
      "created_at": "2026-06-10T10:02:00Z",
      "updated_at": "2026-06-10T10:02:00Z"
    },
    {
      "id": "inquiry_type",
      "type": "dropdown",
      "value": "Sales",
      "created_at": "2026-06-10T10:02:45Z",
      "updated_at": "2026-06-10T10:02:45Z"
    }
  ]
}