Alfresco API

GET /sites/{siteId}/members

基本信息

获取sites siteId的sites成员资格列表。

请求方式 :GET

请求API :/ sites / {siteId} / members

响应等级(状态200)

成功回应

{
  "list": {
    "pagination": {
      "count": 0,
      "hasMoreItems": true,
      "totalItems": 0,
      "skipCount": 0,
      "maxItems": 0
    },
    "entries": [
      {
        "entry": {
          "id": "string",
          "person": {
            "id": "string",
            "firstName": "string",
            "lastName": "string",
            "description": "string",
            "avatarId": "string",
            "email": "string",
            "skypeId": "string",
            "googleId": "string",
            "instantMessageId": "string",
            "jobTitle": "string",
            "location": "string",
            "company": {
              "organization": "string",
              "address1": "string",
              "address2": "string",
              "address3": "string",
              "postcode": "string",
              "telephone": "string",
              "fax": "string",
              "email": "string"
            },
            "mobile": "string",
            "telephone": "string",
            "statusUpdatedAt": "2021-01-08T08:52:11.804Z",
            "userStatus": "string",
            "enabled": true,
            "emailNotificationsEnabled": true,
            "aspectNames": [
              "string"
            ],
            "properties": {},
            "capabilities": {}
          },
          "role": "SiteConsumer"
        }
      }
    ]
  }
}

响应内容类型 applicaiton/json

Query参数

名称 类型 是否必填 示例值 描述
skipCount integer 0 在list中跳过指定数量的数据。 如果未提供,则默认值为0。
maxItems integer 100 list中要返回的最大项目数。 如果未提供,则默认值为100。
fields Array[string]   field名称的list。 例如,如果您想节省整体带宽,则可以使用此参数来限制响应中返回的field。
例如,如果您想节省整体带宽,则可以使用此参数来限制响应中返回的field。 该列表适用于返回的单个实体或集合中的条目。
如果API方法也支持include参数,则除了在fields参数中指定的fields外,还返回include参数中指定的fields。

Path参数

名称 类型 是否必填 示例值 描述
siteId string   sites的标识符。

错误信息描述

状态码 原因
400 参数无效:maxItemsskipCount的值无效
401 验证失败
404 siteId不存在
default 意外错误

返回结果示例

{
  "error": {
    "errorKey": "string",
    "statusCode": 0,
    "briefSummary": "string",
    "stackTrace": "string",
    "descriptionURL": "string",
    "logId": "string"
  }
}