forms
Access the Forms API to list and retrieve forms available to your team. Each form includes its metadata and associated questions, which define the structure of client-facing assessments or workflows.
Capabilities
- List Forms: Retrieve all available forms in your team with optional search by name.
- Get Form by ID: Fetch a specific form using its unique identifier (UUID).
- Each form includes a list of its structured questions, including type, text, help text, and order.
Use Case Examples
- Render form questions dynamically in your application.
- Use form metadata to organize intake flows or assessments.
- Connect with the Responses API to collect answers for each form.
Example
curl --request GET \
--url https://api.app.zentake.com/v2/forms \
--header 'X-API-KEY: <your_api_key>' \
--header 'X-API-SECRET: <your_api_secret>'
Get forms
### Example:
Get form by id
### Example: