GET api/v3/customers/pricingSheets/{pricingSheetId}

Retrieves details regarding a specific pricing sheet for a customer

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pricingSheetId

The id of the pricing sheet for which to get details

integer

Required

Body Parameters

None.

Response Information

Resource Description

A structure containing the information about the pricing sheet

CustomerPricing
NameDescriptionTypeAdditional information
PricingId

A number to identify this specific customer

integer

None.

Number

A short description used to identify the pricing sheet.

string

None.

Name

The name of the pricing sheet.

string

None.

EffectivedDate

When the pricing sheet becomes effective.

date

None.

PricingCurrencyDescription

Describes which currency will be used for pricing.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "PricingId": 1,
  "Number": "sample string 2",
  "Name": "sample string 3",
  "EffectivedDate": "2024-05-19T02:26:07.7997357-04:00",
  "PricingCurrencyDescription": "sample string 5"
}

application/xml, text/xml

Sample:
<CustomerPricing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <PricingId>1</PricingId>
  <Number>sample string 2</Number>
  <Name>sample string 3</Name>
  <EffectivedDate>2024-05-19T02:26:07.7997357-04:00</EffectivedDate>
  <PricingCurrencyDescription>sample string 5</PricingCurrencyDescription>
</CustomerPricing>