Get Product Family Integration Metadata

get

/rest/v16/productFamilies/{prodFamVarName}/integrations

This endpoint returns metadata for the specified Product Family integration.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

List of integrations defined at product family level.
Body ()
Root Schema : integration-collection
Type: object
Show Source
Nested Schema : Integrations
Type: array
Title: Integrations
List of integrations.
Show Source
Nested Schema : integration
Type: object
Show Source
Nested Schema : integrationTranslation-collection
Type: object
Show Source
Nested Schema : Translations
Type: array
Title: Translations
List of translations for product integration.
Show Source
Nested Schema : integrationTranslation
Type: object
Show Source
Nested Schema : language
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve the metadata for the specified Configuration item by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X GET - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/productFamilies/integration/integrations

Response Body Sample

{
  "items": [{
      "links": [{
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/integration"
        }, {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/productFamilies/integration/integrations/integrationAction"
        }
      ],
      "name": "Integration Action",
      "variableName": "integrationAction",
      "translations": {
        "items": [{
            "language": {
              "languageCode": "en",
              "languageNumber": -1
            },
            "name": "Integration Action"
          }, {
            "language": {
              "languageCode": "de",
              "languageNumber": 0
            },
            "name": "Integration Action_ößü"
          }
        ]
      }
    }
  ],
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/productFamilies/integration/integrations"
    }
  ]
Back to Top