Questionnaire Templates
Browse questionnaire templates via the Jump EHR API. Read-only access to form definitions used in patient journeys.
Questionnaire templates define the structure of forms used in patient journeys — intake forms, clinical assessments, pre-booking questionnaires, and more.
Questionnaire templates are read-only via the API. Create and edit templates through the Jump dashboard.
Authorization
BearerApiKey API key with the pk_live_ prefix. pk_test_ keys are refused (403 TEST_MODE_UNAVAILABLE) until a sandbox exists.
In: header
Query Parameters
Maximum number of records to return (1–100, default 20)
1 <= value <= 10020Number of records to skip (default 0)
0 <= value0Search by title
Response Body
application/json
application/json
curl -X GET "https://example.com/questionnaire-templates"{ "data": [ { "id": "string", "questionnaire_id": "string", "title": "string", "description": "string", "schema": {}, "category": "string", "tags": [ "string" ], "is_clinical": true, "version": 0, "is_active": true, "key": "string", "created_at": "string", "updated_at": "string" } ], "meta": { "limit": 20, "next_offset": 1, "has_more": true, "request_id": "req_abc123" }}Authorization
BearerApiKey API key with the pk_live_ prefix. pk_test_ keys are refused (403 TEST_MODE_UNAVAILABLE) until a sandbox exists.
In: header
Path Parameters
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://example.com/questionnaire-templates/497f6eca-6276-4993-bfeb-53cbbbba6f08"{ "data": { "id": "string", "questionnaire_id": "string", "title": "string", "description": "string", "schema": {}, "category": "string", "tags": [ "string" ], "is_clinical": true, "version": 0, "is_active": true, "key": "string", "created_at": "string", "updated_at": "string" }, "meta": { "request_id": "req_abc123" }}