メインコンテンツへスキップ
GET
/
terms_of_services
/
{terms_of_service_id}
サービス利用規約を取得
curl -i -X GET "https://api.box.com/2.0/terms_of_services/324234" \
     -H "authorization: Bearer <ACCESS_TOKEN>"
{
  "id": "11446498",
  "type": "terms_of_service",
  "status": "enabled",
  "enterprise": {
    "id": "11446498",
    "type": "enterprise",
    "name": "Acme Inc."
  },
  "tos_type": "managed",
  "text": "By using this service, you agree to ...",
  "created_at": "2012-12-12T10:53:43-08:00",
  "modified_at": "2012-12-12T10:53:43-08:00"
}
このリソースは、バージョン2024.0のエンドポイントで使用されています。 詳細については、 Box APIのバージョン管理を参照してください。Box SDKのバージョニング戦略について詳しく学ぶ。」

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

terms_of_service_id
string
required

サービス利用規約のID。

Response

サービス利用規約オブジェクトを返します。

1つのサービス利用規約に該当するとみなされるルートレベルのレコード。 1つのサービス利用規約に該当するとみなされるルートレベルのレコード。

id
string
required

このサービス利用規約の一意の識別子。

Example:

"11446498"

type
enum<string>
required

値は常にterms_of_serviceになります。

利用可能なオプション:
terms_of_service
Example:

"terms_of_service"

status
enum<string>

これらの利用規約が有効になっているかどうか。

利用可能なオプション:
enabled,
disabled
Example:

"enabled"

enterprise
Enterprise · object

これらの利用規約が適用される企業。

tos_type
enum<string>

これらの利用規約を管理対象ユーザーに適用するか、外部ユーザーに適用するか。

利用可能なオプション:
managed,
external
Example:

"managed"

text
string

利用規約のテキスト。statusdisabledに設定されている場合は、このテキストが空になることがあります。

Example:

"By using this service, you agree to ..."

created_at
string<date-time>

リーガル項目が作成された日時。

Example:

"2012-12-12T10:53:43-08:00"

modified_at
string<date-time>

リーガル項目が変更された日時。

Example:

"2012-12-12T10:53:43-08:00"