Skip to main content

list_content_standards

利用可能なコンテンツスタンダード設定を列挙します。 Response time: < 500ms

Request

Schema: list-content-standards-request.json
ParameterTypeRequiredDescription
countriesarrayNoFilter by ISO 3166-1 alpha-2 country codes (case-insensitive)
channelsarrayNoFilter by channels
languagesarrayNoFilter by ISO 639-1 or BCP 47 language tags (case-insensitive)

Response

Schema: list-content-standards-response.json スタンダード設定の概要リストを返します。ポリシー本文やキャリブレーションデータを含む詳細は get_content_standards を呼び出してください。

Success Response

{
  "standards": [
    {
      "standards_id": "emea_digital_safety",
      "name": "EMEA - all digital channels",
      "countries_all": ["GB", "DE", "FR"],
      "channels_any": ["display", "video", "ctv"],
      "languages": ["en", "de", "fr"]
    },
    {
      "standards_id": "us_display_only",
      "name": "US - display only",
      "countries_all": ["US"],
      "channels_any": ["display"],
      "languages": ["en"]
    }
  ]
}

Error Response

{
  "errors": [
    {
      "code": "UNAUTHORIZED",
      "message": "Invalid or expired token"
    }
  ]
}