Zum Inhalt springen
Leadtime
Deutsch
Esc
navigateopen⌘Jpreview

List form instances on a task

Returns every form instance on the task, including templateId, current values, and a fields array for each instance. Each field includes valueKey — use that string as the property name in the values object when calling PATCH /tasks/{identifier}/form-instances/{formInstanceId}. To choose which template to attach next, list templates with GET /workspace/form-templates (template id is the templateId for POST). For the full static schema of a template (before attach), use GET /workspace/form-templates/{id}.

GET/tasks/{identifier}/form-instances
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:read
or
AuthorizationBearer token (JWT) · headerrequired
Path parameters
identifierstringrequired
Task UUID or shortNumber
Responses
200
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
Request
curl -X GET "https://leadtime.app/api/public/tasks/string/form-instances" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
No example response.