Get Product Family Integrations Metadata
get
                    /rest/v19/productFamilies/{prodFamVarName}/integrations/{integrationVarName}
This endpoint returns an array of all integrations defined for a specific Product Family.
                
                Request
Path Parameters
                - 
                    integrationVarName(required): string
                    
                    Integration variable name.
- 
                    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
Integration details defined at product family level.
                
                
                    Root 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 : 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 : 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/integrationAction
Response Body Sample
{
  "links": [{
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v19/productFamilies/integration/integrations"},{
    "rel": "self",
    "href": "https://sitename.oracle.com/rest/v19/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_ößü"}]
  }
}