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
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
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