Create directory user
documentedCreate a new directory user.
POST /integrations/rest/v3/directories/usersDirectoriesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$integration_domain}}/integrations/rest/v3/directories/users" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"directoryId": "{{$directory_id}}", "username": "{{$username}}", "email": "{{$email}}", "firstName": "{{$first_name}}", "lastName": "{{$last_name}}", "enabled": {{$enabled}}, "password": "{{$password}}"}'