Collaborations

コラボレーションのリスト

integer / int64
1000

これらのエントリで使用された制限値。許容される最大値を超えていない限り、クエリパラメータのlimitと等しくなります。最大値はAPIによって異なります。

integer / int64
2000

このセットに含まれる最初のエントリのゼロから始まるオフセット。これは、offsetクエリパラメータと同じになります。

このフィールドは、オフセットベースのページ割りを使用する呼び出しのみで返されます。 マーカーベースでページ割りされたAPIでは、このフィールドは省略されます。

object array

項目が返される順序。

このフィールドは、オフセットベースのページ割りを使用する呼び出しのみで返されます。 マーカーベースでページ割りされたAPIでは、このフィールドは省略されます。

string
type

並べ替えに使用するフィールド

ASC

並べ替えの方向(昇順または降順)

次の値のいずれか1つ: ASC,DESC

integer / int64
5000

コレクション全体の最後のエントリのオフセットに1を加算をした値。 コレクション内のエントリの合計数は、total_countよりも少ない場合があります。

このフィールドは、オフセットベースのページ割りを使用する呼び出しのみで返されます。 マーカーベースでページ割りされたAPIでは、このフィールドは省略されます。

レスポンスの例

{
  "entries": [
    {
      "id": 11446498,
      "type": "collaboration",
      "item": {
        "id": 11446498,
        "type": "file",
        "sequence_id": 3,
        "etag": 1,
        "name": "Pictures"
      },
      "accessible_by": {
        "id": 11446498,
        "type": "user",
        "name": "Aaron Levie",
        "login": "ceo@example.com"
      },
      "invite_email": "john@example.com",
      "role": "editor",
      "expires_at": "2012-12-12T10:53:43-08:00",
      "status": "accepted",
      "acknowledged_at": "2012-12-12T10:53:43-08:00",
      "created_by": {
        "id": 11446498,
        "type": "user",
        "name": "Aaron Levie",
        "login": "ceo@example.com"
      },
      "created_at": "2012-12-12T10:53:43-08:00",
      "modified_at": "2012-12-12T10:53:43-08:00",
      "acceptance_requirements_status": {
        "terms_of_service_requirement": {
          "is_accepted": true,
          "terms_of_service": {
            "id": 11446498,
            "type": "terms_of_service"
          }
        },
        "strong_password_requirement": {
          "enterprise_has_strong_password_required_for_external_users": true,
          "user_has_strong_password": true
        },
        "two_factor_authentication_requirement": {
          "enterprise_has_two_factor_auth_enabled": true,
          "user_has_two_factor_authentication_enabled": true
        }
      }
    }
  ],
  "limit": 1000,
  "offset": 2000,
  "order": [
    {
      "by": "type",
      "direction": "ASC"
    }
  ],
  "total_count": 5000
}