Exporting Partner Product Prices
This task will export the prices partners will pay for products from your Enapps account to an XML file. You can optionally provide specific partner IDs or product IDs to filter the export, via the Partner IDs and Product IDs settings. Please refer to the table below for details of how the task will behave based on these settings.
Partner IDs | Product IDs | Result |
---|---|---|
All | All | The task will export a list of all prices for all partners. This approach is likely to be slow, so it is not recommended. |
All | Specific | The task will export a partial list of prices for all partners. |
Specific | All | The task will export a full list of prices for specific partners. |
Specific | Specific | The task will export the prices for all combinations of the specified partners and products. |
Tip
If you have price lists set up in Enapps that apply to groups of customers, for example 'retail' and 'trade' prices, you can export them using the Export Products task. Enapps can configure a separate access token for each price list, which when specified via the connection, will return the pricing for that price list. This provides a much faster way to obtain price list data from Enapps.
Settings
Enapps Connection
Required
The Enapps connection to use. See the Connecting to Enapps article if you require more information on how to create/manage connections.
Additional Fields
Optional
A list of additional field names to include in the export from Enapps. They will be output to the CustomFields
element in the XML.
Partner IDs
Optional
You can optionally filter the export based on partner ID. If enabled, it will ensure that only prices for specific partners are exported. The following options are available:
- Export Type - Select
Specific
if you want to enable filtering by ID, or selectAll
if you don't want to enable the filtering. - Record IDs - The record IDs can be provided in the form of a comma separated list, or as a Zynk Object list.
Product IDs
Optional
You can optionally filter the export based on product ID. If enabled, it will ensure that only prices for specific products are exported. The following options are available:
- Export Type - Select
Specific
if you want to enable filtering by ID, or selectAll
if you don't want to enable the filtering. - Record IDs - The record IDs can be provided in the form of a comma separated list, or as a Zynk Object list.
Timeout
Optional
The length of time to wait for responses from the Enapps API. If not specified, the timeout will default to 100 seconds.
Output File
Required
The name of the file to export the data to. The data will be output in XML format, a sample of which is shown below.
Zynk Settings
Examples
Sample output file:
<?xml version="1.0" encoding="utf-8"?>
<DetailedProducts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DetailedProduct>
<PartnerId>993</PartnerId>
<ProductId>4664</ProductId>
<ListPrice>5.00</ListPrice>
<Currency>GBP</Currency>
<LastModified>2025-01-24T09:48:45.58284</LastModified>
<AvailableToSell>1095.0</AvailableToSell>
</DetailedProduct>
<DetailedProduct>
<PartnerId>993</PartnerId>
<ProductId>4670</ProductId>
<ListPrice>0.00</ListPrice>
<Currency>GBP</Currency>
<LastModified>2024-11-27T11:44:59.16707</LastModified>
<AvailableToSell>3.0</AvailableToSell>
</DetailedProduct>
<DetailedProduct>
<PartnerId>993</PartnerId>
<ProductId>290</ProductId>
<ListPrice>5.00</ListPrice>
<Currency>GBP</Currency>
<LastModified>2024-11-27T11:11:32.857853</LastModified>
<AvailableToSell>0.0</AvailableToSell>
</DetailedProduct>
</DetailedProducts>