Project ADME
Customers
Agents
Templates
Runs
Audit
dev mode — no auth configured
New template
Name
Description
Category
onboarding
offboarding
change
custom
Definition (JSON — see docs/template-schema.md)
{ "inputSchema": { "type": "object", "properties": { "samAccountName": { "type": "string" }, "ouPath": { "type": "string" }, "givenName": { "type": "string" }, "sn": { "type": "string" }, "mail": { "type": "string" }, "initialPassword": { "type": "string" } }, "required": ["samAccountName", "ouPath", "givenName", "sn", "mail", "initialPassword"] }, "steps": [ { "id": "create-ad-user", "name": "Create AD user", "executor": "agent", "actionType": "ad.createUser", "params": { "samAccountName": "{{input.samAccountName}}", "ouPath": "{{input.ouPath}}", "initialPassword": "{{input.initialPassword}}", "attributes": { "givenName": "{{input.givenName}}", "sn": "{{input.sn}}", "mail": "{{input.mail}}" } }, "onFailure": "abort" } ] }
Create template