我正在为我们的 Enterprise Box 帐户开发一些配置/取消配置脚本,并注意到 2.0 API 文档指出有一个名为“tracking_codes”的属性。在检索我们的企业用户或检索特定用户时,我似乎看不到此属性。以下是我能够检索的属性:
{
"total_count":1,
"entries":[
{"type":"user",
"id":"123456",
"name":"John Doe",
"login":"johndoe@null.com",
"created_at":"2013-03-04T12:09:08-08:00",
"modified_at":"2013-04-24T08:22:30-07:00",
"language":"en",
"space_amount":26843545600,
"space_used":0,
"max_upload_size":5368709120,
"status":"active",
"job_title":"",
"phone":"",
"address":"",
"avatar_url":"https:\/\/www.box.com\/api\/avatar\/large\/123456"}
],
"limit":100,
"offset":0}
这是我用来获取此信息的内容:
curl https://api.box.com/2.0/users?filter_term=johndoe@null.com -H "Authorization: Bearer ACCESS_TOKEN"
我需要使用不同的 API url 或 url 变量来检索“tracking_codes”属性吗?我想使用此属性来跟踪用户“类型”。我们计划为不同类型的用户提供更多空间,例如在我们的案例中,工作人员和教授将获得比学生更多的空间。
谢谢!