GET
/
api2
/
v1
/
priceLists
/
{priceListUid}
/
priceSets
List price sets
curl --request GET \
  --url https://cloud.memsource.com/web/api2/v1/priceLists/{priceListUid}/priceSets
{
  "totalElements": 123,
  "totalPages": 123,
  "pageSize": 123,
  "pageNumber": 123,
  "numberOfElements": 123,
  "content": [
    {
      "sourceLang": "<string>",
      "targetLang": "<string>",
      "minimumPrice": 123,
      "prices": [
        {
          "workflowStep": {
            "id": "<string>",
            "uid": "<string>",
            "name": "<string>",
            "abbr": "<string>",
            "order": 123,
            "lqaEnabled": true
          },
          "price": 123
        }
      ]
    }
  ],
  "sort": {
    "orders": [
      {
        "direction": "ASC",
        "property": "<string>"
      }
    ]
  }
}

Path Parameters

priceListUid
string
required

Query Parameters

pageNumber
integer
default:0

Page number, starting with 0, default 0

Required range: x >= 0
pageSize
integer
default:50

Page size, accepts values between 1 and 50, default 50

Required range: 1 <= x <= 50
sourceLanguages
string[]
targetLanguages
string[]

Response

200
application/json

successful operation

The response is of type object.