Appearance
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 parameters | data type | description |
|---|---|---|
body.name* | string | The display name of the field group |
body.description | string | A description of the field group |
body.fields | string[] | 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