Export Price List Pricing from SparkLayer
This task will export all of the pricing that appears on your price lists from SparkLayer.
Settings
Connection
Required
The SparkLayer connection to use. See Connecting to SparkLayer.
Price List Slugs
Optional
Filters the export based on price list slug. Multiple slugs can be provided as a comma separated list. If left blank, the task will export the pricing from all price lists.
Output File
Required
The XML file to save the exported records to. The XML format will be the same as the input file. An example of the XML format is shown below.
Examples
A sample output file is shown below.
<?xml version="1.0"?>
<PriceListPricings>
<PriceListPricing>
<ExternalId>123</ExternalId>
<PriceListSlug>trade-prices</PriceListSlug>
<Pricing>
<ProductPrice>
<Quantity>1</Quantity>
<Price>10</Price>
<UnitOfMeasure>each</UnitOfMeasure>
<Sku>PROD0001</Sku>
</ProductPrice>
<ProductPrice>
<Quantity>1</Quantity>
<Price>10</Price>
<UnitOfMeasure>each</UnitOfMeasure>
<Sku>PROD0002</Sku>
</ProductPrice>
</Pricing>
</PriceListPricing>
<PriceListPricing>
<ExternalId>456</ExternalId>
<PriceListSlug>web-prices</PriceListSlug>
<Pricing>
<ProductPrice>
<Quantity>1</Quantity>
<Price>20</Price>
<UnitOfMeasure>each</UnitOfMeasure>
<Sku>PROD0001</Sku>
</ProductPrice>
<ProductPrice>
<Quantity>1</Quantity>
<Price>20rice>
<UnitOfMeasure>each</UnitOfMeasure>
<Sku>PROD0002</Sku>
</ProductPrice>
</Pricing>
</PriceListPricing>
</PriceListPricings>