Add user to instance
documentedAdd a user to an enterprise instance.
POST /api/enterprise/v2/enterprises/{enterpriseId}/instance/{instanceId}/users/{userId}Org Memberno 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://acuityscheduling.com/api/enterprise/v2/enterprises/{{$enterpriseId}}/instance/{{$instanceId}}/users/{{$userId}}" \
-X POST \
-u "{{$enterpriseId}}:{{ACUITYSCHEDULING_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"role": "{{$role}}", "permissions": [ {"permission": "{{$perm1}}", "enabled": {{$perm1Enabled}}}, {"permission": "{{$perm2}}", "enabled": {{$perm2Enabled}}} ], "status": "active", "notes": "{{$notes}}"}'