简体中文版经机器翻译而成,仅供参考。如与英语版出现任何冲突,应以英语版为准。
列出用户
贡献者
单独 PDF 文档的收集
Creating your file...
This may take a few minutes. Thanks for your patience.
Your file is ready
您可以列出为特定 Astra 帐户定义的用户。
HTTP方法和端点
此REST API调用使用以下方法和端点。
HTTP 方法 | 路径 |
---|---|
获取 |
/accouns/{account_id}/core/v1/users |
其他输入参数
除了所有 REST API 调用通用的参数之外,此步骤的 curl 示例还使用以下参数。
参数 | Type | Required | Description |
---|---|---|---|
包括 |
查询 |
否 |
也可以选择要在响应中返回的值。 |
curl 示例:返回所有用户的所有数据
curl --request GET \
--location "https://astra.netapp.io/accounts/$ACCOUNT_ID/core/v1/users" \
--include \
--header "Accept: */*" \
--header "Authorization: Bearer $API_TOKEN"
CURL示例:返回所有用户的名字、姓氏和ID
curl --request GET \
--location "https://astra.netapp.io/accounts/$ACCOUNT_ID/core/v1/users?include=firstName,lastName,id" \
--include \
--header "Accept: */*" \
--header "Authorization: Bearer $API_TOKEN"
JSON 输出示例
{ "items": [ [ "David", "Anderson", "844ec6234-11e0-49ea-8434-a992a6270ec1" ], [ "Jane", "Cohen", "2a3e227c-fda7-4145-a86c-ed9aa0183a6c" ] ], "metadata": {} }