List form categories and templates (read-only, for attaching forms to tasks)
Same data as GET /workspace/form-templates: categories plus template list items (including each template id). Use a template id as templateId in POST /tasks/{identifier}/form-instances. Prefer GET /workspace/form-templates for new integrations; field schemas are available from GET /workspace/form-templates/{id}.
GET
/administration/form-templates-availableAuthorization
AuthorizationOAuth2 access token · headerrequiredScopes:
api:reador
AuthorizationBearer token (JWT) · headerrequiredResponses
200
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
Request
curl -X GET "https://leadtime.app/api/public/administration/form-templates-available" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/administration/form-templates-available", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"https://leadtime.app/api/public/administration/form-templates-available",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)Response
No example response.
Unauthorized - Invalid or missing authentication token
Forbidden - Insufficient API scopes or permissions