Get all answers for a submission

GET /api/v1/form/{form_uuid}/submission/{submission_uuid}/answer

Headers

  • X-PLANNR-ACCOUNT-UUID string

Path parameters

  • form_uuid string Required
  • submission_uuid string Required

Query parameters

  • filter[uuid] string

    Filter by a comma separated list of UUIDs.

  • sort string

    Field to sort by. Valid fields are [created_at, updated_at, value]. Negative sign to denote DESC. Defaults to '-created_at'.

  • per_page integer

    Number of results to return with pagination (Default 15. Max 500).

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string
      • created_at string
      • updated_at string
      • value string
      • question object
        Hide question attributes Show question attributes object
        • uuid string
        • created_at string
        • updated_at string
        • section string
        • title string
        • help_text string
        • caption string
        • type string
        • required boolean
        • position integer
        • selection_options array[string]
        • target_field string
        • key string
        • linked_question string
        • linked_primary boolean
GET /api/v1/form/{form_uuid}/submission/{submission_uuid}/answer
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/form/6ff8f7f6-1eb3-3525-be4a-3932c805afed/submission/6ff8f7f6-1eb3-3525-be4a-3932c805afed/answer' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "data": [
    {
      "uuid": "0845032e-4892-444d-9f2e-15c2845e71bf",
      "value": "this as an answer to a form question",
      "question": {
        "key": "what_is_your_name",
        "type": "string",
        "uuid": "78db8df4-9140-4c3a-a99e-8d988ebce0c3",
        "title": "What is your name?",
        "caption": "Your full legal name",
        "section": "App\\Http\\Resources\\FormSectionResource",
        "position": 1,
        "required": true,
        "help_text": "Gareth",
        "created_at": "2025-06-26T11:37:05+01:00",
        "updated_at": "2025-06-26T11:37:05+01:00",
        "target_field": "name",
        "linked_primary": true,
        "linked_question": "App\\Http\\Resources\\FormBuilder\\LinkedFormQuestionResource",
        "selection_options": [
          "option 1",
          "option 2"
        ]
      },
      "created_at": "2025-06-26T11:37:05+01:00",
      "updated_at": "2025-06-26T11:37:05+01:00"
    }
  ]
}