Skip to content

Create Object Schema

Create a new object (form/task/equipment) schema configuration. Requires ADMIN, MANAGE_OBJECTS, or MANAGE_FORM permissions.

Parameters

name * are required parametersdata typedescription
body.name*stringThe display name of the object schema
body.type*stringThe object type: form, corrective-action, or asset
body.descriptionstringA description of the schema
body.fieldGroupsstring[]IDs of field groups to include
body.workflowobjectWorkflow state configuration

Return Value

The created object schema.

Examples

bash
curl -X POST "https://app.wombat.software/api/{targetPath}/object" \
  -H "Content-Type: application/json" \
  -H "Authentication: Bearer ..." \
  -d '{"name": "Incident Report", "type": "form"}'

ENDPOINTS

post/api/{targetPath}/object