Get List of Product Family Action Translations

get

/rest/v19/allProductFamilySetups/{allProdFamsVarName}/productFamilies/{prodFamVarName}/_actions/{actionVarName}/translations

Use this endpoint to retrieve all translations for the specified Product Family action.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Restrict which fields shall be returned. The value is a comma delimited string and each token is a field name.
  • The requested page size, which limits the number of elements the collection should max return.
  • The offset of the page. By default, offset is 0, which means first page will be returned.
  • Specifies a comma-separated list of pairs to order the response by.
  • Allows to specify one or more filtering criteria. By default, no filtering is applied.
  • Specifies that the total count of records should be included in the response when doing pagination.
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : configActionTranslations-collection
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : Config Action Translations
Type: object
Title: Config Action Translations
Show Source
  • Title: Date Added
    System field indicating the date on which the Resource was created.
  • Title: Date Modified
    System field indicating the date on which the Resource was last modified.
  • Title: Translated Config Action Description
    Translated Description of the Config Action.
  • Title: Id
    Identifier for the resource
  • Title: Translated Config Action Label
    Translated Label of the Config Action.
  • Language
    Title: Language
    The defined language of the rows translated columns.
Nested Schema : Language
Type: object
Title: Language
The defined language of the rows translated columns.
Show Source
Back to Top

Examples

The following example shows how to retrieve all Product Family action translations 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 "Accept: application/json"
https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/visionVehicles/_actions/selectPromotion2/translations

Response Body Sample

{
  "hasMore": false,
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/visionVehicles/_actions/selectPromotion2/translations"
    }
  ],
  "items": [{
      "description": null,
      "dateModified": "2023-09-08T18:57:01.000Z",
      "language": {
        "languageNumber": 0,
        "languageCode": "de",
        "id": 36341503,
        "links": [{
            "rel": "domain",
            "href": "https://sitename.oracle.com/rest/v19/languages"
          }, {
            "rel": "canonical",
            "href": "https://sitename.oracle.com/rest/v19/languages/36341503"
          }
        ]
      },
      "label": "Wahlen Sie Werbung",
      "dateAdded": "2023-09-08T18:57:01.000Z",
      "id": 36972018,
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/visionVehicles/_actions/selectPromotion2/translations/36972018"
        }, {
          "rel": "parent",
          "href": "https://sitename.oracle.com/rest/v19/allProductFamilySetups/_allProductFamilies/productFamilies/visionVehicles/_actions/selectPromotion2"
        }
      ]
    }
  ]
}
Back to Top