Skip to content

Create Field Group

Create a new field group, which is a reusable collection of fields that can be included in object schemas and training configs. Requires ADMIN permissions.

Parameters

name * are required parametersdata typedescription
body.name*stringThe display name of the field group
body.descriptionstringA description of the field group
body.fieldsstring[]Array of field IDs to include in the group

Return Value

The created field group configuration.

Examples

bash
curl -X POST "https://app.wombat.software/api/{targetPath}/field-group" \
  -H "Content-Type: application/json" \
  -H "Authentication: Bearer ..." \
  -d '{"name": "Incident Details", "fields": ["field1", "field2"]}'

ENDPOINTS

post/api/{targetPath}/field-group