GET pricing-profiles
Returns all pricing profiles on your account, including each profile's ID and name. The name is for display purposes only; use the ID to assign a pricing profile to a Listing when updating prices.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Returns all pricing profiles on your account, including each profile's ID and name. The name is for display purposes only; use the ID to assign a pricing profile to a Listing when updating prices.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
[
{
"PricingProfileID": 1,
"Name": "Standard Markup"
},
{
"PricingProfileID": 2,
"Name": "Clearance"
}
]
application/xml, text/xml
Sample:
<ArrayOfPricingProfileModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<PricingProfileModel>
<PricingProfileID>1</PricingProfileID>
<Name>Standard Markup</Name>
</PricingProfileModel>
<PricingProfileModel>
<PricingProfileID>2</PricingProfileID>
<Name>Clearance</Name>
</PricingProfileModel>
</ArrayOfPricingProfileModel>