Query parameters
-
Filter by a comma separated list of UUIDs.
-
Get forms that have or have not been published.
-
Get forms of this visibility value, Available types are 'hidden', 'public' and 'private'
-
Get forms with a title that match this filter.
-
Date to filter when the record was created after.
-
Date to filter when the record was created before.
-
Field to sort by. Valid fields are [created_at, updated_at, title]. Negative sign to denote DESC. Defaults to '-created_at'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/form
curl \
--request GET 'https://api.plannrcrm.com/api/v1/form' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"live": true,
"uuid": "ecb098ce-3e1f-4ec1-a25d-8dc1fd7298e7",
"title": "Annual Catchup 2022",
"sections": {
"key": "what_is_your_name",
"type": "string",
"uuid": "5bb205fa-1dfc-4058-bd6f-811b872ea785",
"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
}
]
}