POST AdditionalPriceList/Get

Gets a list of Additional Price Lists based on the list of identifiers.

Request Information

This method supports OData queries.

URI Parameters

None.

Body Parameters

The list of identifiers.

Collection of integer

Request Formats

application/json, text/json

Sample:
[
  1,
  2
]

Response Information

Resource Description

This collection is wrapped in a paging response object.

Paging response of Additional Price List
NameTypeAdditional informationDescription
TotalResults integer

None.

ReturnedResults integer

None.

Results Collection of Additional Price List

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalResults": 1,
  "ReturnedResults": 2,
  "Results": [
    {
      "ID": 1,
      "Description": "sample string 2",
      "IsDefault": true
    },
    {
      "ID": 1,
      "Description": "sample string 2",
      "IsDefault": true
    }
  ]
}