Get a form

GET /api/v1/form/{uuid}

Headers

  • X-PLANNR-ACCOUNT-UUID string

Path parameters

  • uuid string Required

Responses

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

      The UUID of the resource.

    • created_at string

      The timestamp of when the resource was created.

    • updated_at string

      The timestamp of when the resource was updated.

    • title string

      The title of the form

    • description string

      The description of the form

    • live boolean

      Whether the form is live

    • visibility string

      The visibility of the form

    • sections object

      The sections of the form. They include the forms questions in a array

      Hide sections attributes Show sections 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
    • allowed_hosts array[string]

      Array of allowed domains that this form can be accessed from using different origins

    • draft_submissions_count integer

      Count of draft submissions against this form

    • submitted_submissions_count integer

      Count of submitted submissions against this form

    • create_client boolean

      Denotes if this form creates a new client when it is submitted from a public embed

    • client_type string

      If create_client is true, then the client_type is the type of client that will be created, possible values are client and prospect

GET /api/v1/form/{uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/form/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (201)
{
  "live": true,
  "uuid": "7e361dc7-e8ca-41a1-b637-fb4abf143aea",
  "title": "Annual Catchup 2022",
  "sections": {
    "key": "what_is_your_name",
    "type": "string",
    "uuid": "01248e18-ccea-43a5-ac14-a270c2aeb9f1",
    "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-25T15:10:43+01:00",
    "updated_at": "2025-06-25T15:10:43+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-25T15:10:43+01:00",
  "updated_at": "2025-06-25T15:10:43+01: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
}