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": "1d71fd6b-1df7-4992-a0d2-bfd9352001c1",
        "value": "this as an answer to a form question",
        "question": {
          "key": "what_is_your_name",
          "type": "string",
          "uuid": "399b0392-d57f-414c-a984-dcf845bc116b",
          "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-12-24T11:02:59+00:00",
          "updated_at": "2025-12-24T11:02:59+00:00",
          "target_field": "name",
          "linked_primary": true,
          "linked_question": "App\\Http\\Resources\\FormBuilder\\LinkedFormQuestionResource",
          "selection_options": [
            "option 1",
            "option 2"
          ]
        },
        "created_at": "2025-12-24T11:02:59+00:00",
        "updated_at": "2025-12-24T11:02:59+00:00"
      }
    ]
  ]
}