getProfileContextLists

get

/ccadmin/v1/profileContextLists

Get Profile Context Lists. Get the available profileContextList items. Currently only a single item will be returned.

Request

There are no request parameters for this operation.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getProfileContextLists_response
Nested Schema : items
Type: array
profileContextLists items
Nested Schema : items
Type: object
Nested Schema : profileContexts
Type: array
The ordered list of profileContexts
Nested Schema : items
Type: object
Nested Schema : defaultPriceListGroup
Type: object
The Default priceListGroup for the profileContext.
Nested Schema : priceListGroupList
Type: array
The list of available priceListGroups for the profileContext. Properties other than "id" may be visible.
Nested Schema : items
Type: object
Example application/json

{
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:9080/ccadmin/v1/profileContextLists"
        }
    ],
    "autoWrap":true,
    "items":[
        {
            "profileContexts":[
            ],
            "id":"defaultProfileContextList"
        }
    ]
}
Default Response
The error response
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Response Payload returned by endpoint:

{
  "links": [{
    "rel": "self",
    "href": "http://localhost:9080/ccadmin/v1/profileContextLists"
  }],
  "autoWrap": true,
  "items": [{
    "profileContexts": [],
    "id": "defaultProfileContextList"
  }]
}