Get Array Set Metadata

get

/rest/v16/commerceProcesses/{processVarName}/documents/{docVarName}/arraySets/{arraySetVarName}

This service returns the metadata for a specific Commerce array set.

Request

Path Parameters
Back to Top

Response

Default Response

Body ()
Root Schema : CommerceArraySets
Type: object
Show Source
Nested Schema : lookup
Type: object
Show Source
  • Title: Display Value
    Translated display name of the type for which fixed list of values can be defined.
  • Title: Lookup Code
    Language independent code of the fixed list of value.
Back to Top

Examples

The following example shows how to retrieve metadata for the specified array set 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/commerceProcesses/oraclecpqo/documents/transaction/arraySets/laborServices

Response Body Sample

{
  "id": 36641143,
  "dateModified": "2019-01-28",
  "links": [{
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/commerceProcesses/oraclecpqo/documents/transaction"
    }, {
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/commerceProcesses/oraclecpqo/documents/transaction/arraySets/laborServices"
    }, {
      "rel": "child",
      "href": "https://sitename.oracle.com/rest/v16/commerceProcesses/oraclecpqo/documents/transaction/arraySets/laborServices/translations"
    }, {
      "rel": "child",
      "href": "https://sitename.oracle.com/rest/v16/commerceProcesses/oraclecpqo/documents/transaction/arraySets/laborServices/attributes"
    }
  ],
  "label": "Labor Services",
  "description": "",
  "variableName": "laborServices",
  "type": {
    "lookupCode": "CmArrayAttrSet",
    "displayValue": "Array Set"
  }
}
Back to Top