Skip to content

Get form template group by ID

Request

Retrieve detailed information about a form template group including the list of form templates it contains.

Security
PartnerApiKey and PartnerOAuth
Path
groupIdinteger, (int64)required

Form template group ID

Example:500
accountIdinteger, (int64)required

Account identifier

curl -i -X GET \
  'https://api-docs.lobbie.com/_mock/openapi/partner/v2/account/{accountId}/form/template-group/500' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

Form template group found and returned successfully

Bodyapplication/json
createdAtstring, (date-time)

Creation timestamp (UTC)

Example:"2025-01-15T14:00:00Z"
idinteger, (int64)

Unique group identifier

Example:500
isActiveboolean

Whether this group is active

Example:true
locationIdinteger, (int64)

Associated location ID (null if available to all locations)

namestring

Group name

Example:"New Patient Intake Packet"
practitionerIdinteger, (int64)

Associated practitioner ID

templateCountinteger, (int32)

Number of templates in this group

Example:3
templatesArray of objects(FormTemplateSummaryDTO)

Templates included in this group

Response
{ "createdAt": "2025-01-15T14:00:00Z", "id": 500, "isActive": true, "locationId": 0, "name": "New Patient Intake Packet", "practitionerId": 0, "templateCount": 3, "templates": [ {} ] }