0

I want to create user Account in PHP, i searched almost all of stackoverflow at https://stackoverflow.com/questions/tagged/box-api as well as Box API but cannot find anything

Cannot find any documentation of "create_managed_user" function in V2

Community
  • 1
  • 1
user580950
  • 3,558
  • 12
  • 49
  • 94

1 Answers1

2

The Box v2 API allows you to create managed (enterprise) users if and only if you are a Box enterprise administrator:

curl https://api.box.com/2.0/users
-H "Authorization: Bearer ACCESS_TOKEN"
-d '{"login": "eddard@box.com", "name": "Ned Stark"}'
-X POST
John Hoerr
  • 7,955
  • 2
  • 30
  • 40