Get Product Family Integrations Metadata

get

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

This endpoint returns an array of all integrations defined for a specific Product Family.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

Integration details defined at product family level.
Body ()
Root 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/integrationAction

Response Body Sample

{
  "links": [{
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/productFamilies/integration/integrations"},{
    "rel": "self",
    "href": "https://sitename.oracle.com/rest/v16/productFamilies/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_ößü"}]
  }
}
Back to Top