Get a User Personalization

get

/rest/v16/userPersonalizations/{personalizationName}

Use this endpoint to retrieve the specified user personalization.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : User Personalization Instance Definitions
Type: object
Title: User Personalization Instance Definitions
Show Source
Nested Schema : Personalization Data
Type: array
Title: Personalization Data
Data for saving personalization properties
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : Properties
Type: object
Title: Properties
Properties which are personalized by the user
Back to Top

Examples

The following example shows how to retrieve the specified user Line Item Grid personalization 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/userPersonalizations/oraclecpqo-transaction-userState

Response Body Sample

{
 {
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/userPersonalizations"
    }
  ],
  "items": [{
      "personalizationName": "oraclecpqo-transaction-userState",
      "entityType": "COMMERCE",
      "dateModified": null,
      "personalizationData": [{
          "componentName": "table-transactionLine",
          "properties": {
            "textWrapMode": "wrap",
            "hiddenColumns": [
              "_part_display_number",
              "oRCL_ABO_ActionCode_l"
            ],
            "columnOrder":
            {
              "_chargeSetControl": 0,
              "_group_sequence_number": 1,
              "_part_number-_model_name": 2,
              "_part_display_number": 5,
              "listPrice_l": 6,
              "_price_quantity": 8,
              "customDiscountValue_l": 7,
              "customDiscountType_l": 9,
              "customDiscountAmount_l": 10,
              "netPrice_l": 11,
              "priceScore_l": 12,
              "netAmount_l": 13,
              "contractListValue_l": 14,
              "contractDiscount_l": 15,
              "contractValue_l": 16,
              "fulfillmentStatus_l": 3,
              "oRCL_ABO_ActionCode_l": 4
            },
            "expandMode": true,
            "columnWidth":
            {
              "fulfillmentStatus_l": 200
            },
            "sortCriteria":
            {
              "attribute": "listPrice_l",
              "direction": "descending"
            }
          },
          "modifiedDate": "2023-09-29 03:46:08"
        }
      ],
      "dateAdded": null,
      "links": [
        {
          "rel": "self",
          "href": "https://sitename.oracle.com/rest/v16/userPersonalizations/oraclecpqo-transaction-userState"
        }
      ]
    }
  ]
}
Back to Top