Create a submission to a form

POST /api/v1/form/{form_uuid}/submission

Headers

Path parameters

application/json

Body

  • UUID of the account to attach the form submission to, if left blank will use the authenticated account

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • stage string

      The stage of the submission

    • account object

      Account responsible for answering the form

      Additional properties are allowed.

    • request object

      Form submission request attached to this submission if it has one

      Additional properties are allowed.

    • form object

      The form that this submission was created for

      Additional properties are allowed.

    • answers array[object]

      The answers to the questions

      Additional properties are allowed.

POST /api/v1/form/{form_uuid}/submission
curl \
 -X POST https://api.plannrcrm.com/api/v1/form/form_uuid/submission \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 -d '{"account_uuid":"60164956-d01b-499c-a1f8-5db06f5f6fff"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "account_uuid": "60164956-d01b-499c-a1f8-5db06f5f6fff"
}
Response examples (200)
{
  "form": {
    "live": true,
    "uuid": "3f53069c-a3fd-43fd-b3e1-9c53871a673c",
    "title": "Annual Catchup 2022",
    "sections": "App\\Http\\Resources\\FormQuestionResource",
    "created_at": "2025-01-12T12:55:58+00:00",
    "updated_at": "2025-01-12T12:55:58+00:00",
    "visibility": "public",
    "client_type": "client",
    "description": "This is the annual catchup form for 2022",
    "allowed_hosts": [
      "domain.com",
      "subdomain.domain.com"
    ],
    "create_client": true,
    "draft_submissions_count": 5,
    "submitted_submissions_count": 5
  },
  "uuid": "0e97aaab-af0c-46f2-9919-26ae7efab8ab",
  "stage": "draft",
  "account": {
    "firm": "App\\Http\\Resources\\FirmResource",
    "name": "Gareth Thompson",
    "role": "client",
    "tags": "App\\Http\\Resources\\TagResource",
    "type": "client",
    "uuid": "d0946c69-89f6-4117-85c2-363a921342b4",
    "email": "gareth@codepotato.co.uk",
    "groups": "App\\Http\\Resources\\GroupResource",
    "owners": "App\\Http\\Resources\\AccountResource",
    "last_name": "Thompson",
    "created_at": "2025-01-12T12:55:58+00:00",
    "first_name": "Gareth",
    "updated_at": "2025-01-12T12:55:58+00:00",
    "with_login": true,
    "custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
    "introduced_by": "App\\Http\\Resources\\AccountResource",
    "primary_email": "App\\Http\\Resources\\ContactDetailResource",
    "can_be_deleted": "false",
    "assigned_adviser": "App\\Http\\Resources\\AccountResource",
    "next_review_date": "2025-01-12T12:55:58+00:00",
    "has_joint_account": true,
    "current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
    "first_contact_date": "2025-01-12T12:55:58+00:00",
    "external_references": "App\\Http\\Resources\\ExternalReferenceResource",
    "assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
    "previous_review_date": "2025-01-12T12:55:58+00:00",
    "primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
    "assigned_administrator": "App\\Http\\Resources\\AccountResource",
    "anniversary_review_date": "2025-01-12T12:55:58+00:00"
  },
  "answers": [
    {
      "last_name": "olive",
      "first_name": "john"
    }
  ],
  "request": {
    "form": "App\\Http\\Resources\\FormResource",
    "uuid": "e0e45143-c484-4924-be99-861b66187860",
    "created_at": "2025-01-12T12:55:58+00:00",
    "submission": "App\\Http\\Resources\\FormSubmissionResource",
    "updated_at": "2025-01-12T12:55:58+00:00",
    "description": "Please submit your annual survey form",
    "has_submission": true
  },
  "created_at": "2025-01-12T12:55:58+00:00",
  "updated_at": "2025-01-12T12:55:58+00:00"
}