Get Product Family Integration Metadata
get
/rest/v19/productFamilies/{prodFamVarName}/integrations
This endpoint returns metadata for the specified Product Family integration.
Request
Path Parameters
-
prodFamVarName(required): string
Product family variable name.
Query Parameters
-
excludeLinks: string
Exclude links.
-
expand: string
Allows expansion of relationships.
Response
Supported Media Types
- application/json
Default Response
List of integrations defined at product family level.
Root Schema : integration-collection
Type:
Show Source
object-
items:
array Integrations
Title:
IntegrationsList of integrations. -
links:
object Reference Links
Title:
Reference LinksReference links for the Parent, Self, Children and Related as applicable
Nested Schema : Reference Links
Type:
objectTitle:
Reference LinksReference links for the Parent, Self, Children and Related as applicable
Show Source
-
href:
string
Title:
hrefURL to the related object -
rel:
string
Title:
LinkLink relationship to the current object
Nested Schema : integration
Type:
Show Source
object-
links:
object Reference Links
Title:
Reference LinksReference links for the Parent, Self, Children and Related as applicable -
name:
string
Title:
Integration NameIntegration display name. -
translations:
object integrationTranslation-collection
-
variableName:
string
Title:
Integration Variable NameUnique variable name to identify the integration.
Nested Schema : integrationTranslation-collection
Type:
Show Source
object-
items:
array Translations
Title:
TranslationsList of translations for product integration. -
links:
object Reference Links
Title:
Reference LinksReference links for the Parent, Self, Children and Related as applicable
Nested Schema : Translations
Type:
arrayTitle:
TranslationsList of translations for product integration.
Show Source
Nested Schema : integrationTranslation
Type:
Show Source
object-
language:
object language
-
links:
object Reference Links
Title:
Reference LinksReference links for the Parent, Self, Children and Related as applicable -
name:
string
Title:
NameName.
Nested Schema : language
Type:
Show Source
object-
languageCode:
string
Title:
Language CodeLanguage Code -
languageNumber:
integer
Title:
Language NumberUnique language number.
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 -H "Authorization: Bearer <token>" - H "Content-type: application/json" https://sitename.oracle.com/rest/v19/productFamilies/integration/integrations
Response Body Sample
{
"items": [{
"links": [{
"rel": "parent",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/integration"
}, {
"rel": "self",
"href": "https://sitename.oracle.com/rest/v19/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/v19/productFamilies/integration/integrations"
}
]