Sign in

Add user to instance

documented

Add a user to an enterprise instance.

POST /api/enterprise/v2/enterprises/{enterpriseId}/instance/{instanceId}/users/{userId}Org Memberno implementation yet0 runs
No 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}}"}'