機械翻訳について

構成APIカタログを取得

get

/documents/api/{version}/metadata-catalog/configuration

サポートされているサービスを含む、構成リソースのAPIカタログ情報を返します。

リクエスト

サポートされるメディア・タイプ
パス・パラメータ
トップに戻る

レスポンス

サポートされるメディア・タイプ

200レスポンス

リクエストが処理されました。 レスポンスにはサポートされるサービスへのリンクが含まれます
トップに戻る

次の例では、サポートされているサービスを含む、構成リソースのAPIカタログ情報を返します。

GET .../api/1.2/metadata-catalog/configuration

リクエスト・ヘッダー

なし。

リクエスト本文

なし。

HTTPステータス・コード

HTTP_STATUS = 200

JSONレスポンス

{
  "$schema": "http://json-schema.org/schema#",
  "type": "object",
  "properties": {
    "cListURL": {
      "type": "string",
      "description": "Collaboration cList URL."
    },
    "clientURL": {
      "type": "string",
      "description": "Collaboration client URL."
    },
    "oAuthCListURL": {
      "type": "string",
      "description": "Collaboration OAuth cList URL."
    },
    "oAuthClientURL": {
      "type": "string",
      "description": "Collaboration OAuth client URL."
    },
    "restURL": {
      "type": "string",
      "description": "Collaboration REST URL."
    },
    "serviceURL": {
      "type": "string",
      "description": "Collaboration Service URL."
    },
    "domain": {
      "type": "string",
      "description": "The URL for the CDN."
    },
    "description": {
      "type": "string",
      "description": "The description of the CDN."
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "rest-schemas/link#"
      }
    }
  },
  "links": [
    {
      "rel": "describedBy",
      "href": "http://service1-tenant1:8080/documents/api/1.2/metadata-catalog/configuration"
    },
    {
      "rel": "self",
      "href": "http://service1-tenant1:8080/documents/api/1.2/metadata-catalog/configuration"
    },
    {
      "rel": "get-collaboration-configuration",
      "href": "http://service1-tenant1:8080/documents/api/1.2/config/collaboration",
      "method": "GET"
    },
    {
      "rel": "get-deliverycdn-configuration",
      "href": "http://service1-tenant1:8080/documents/api/1.2/config/sites/deliverycdn",
      "method": "GET"
    }    
  ]
}
先頭に戻る