Skip to content

Export Orders from Bluepark

You can use this task to export orders from your Bluepark store. The settings outlined below can be configured to filter the results retrieved by Zynk.

Bluepark Settings

Custom Status ID

Optional
You can specify the ID of a custom status to filter the data returned from the Bluepark API.

Order Status ID

Optional
You can specify one or more order status IDs to filter the export from Bluepark. If providing multiple IDs, separate them with commas (e.g., 1, 2, 3).

Page Size

Required
Defines the number of records returned per page.

Status

Optional
You can provide a status to filter the data returned from the Bluepark API.

Connection Settings

Connection

Required
The Bluepark connection to use. See the Bluepark Connection article for details on creating and managing connections.

Export Settings

Export Type

Required
Determines whether to export ALL records or only MODIFIED records.

Modified Since

Required
Exports records modified since the specified date. If using this setting, ensure that Export Type is set to Modified.

File Settings

Output File

Required
The file path where records will be saved.

Zynk Settings

See Common Task Settings.

XML Output

<?xml version="1.0" encoding="utf-8"?>
<Orders xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Order>
    <ID>1</ID>
    <URL>https://bp145.bluepark.build/api/v1/orders/1</URL>
    <HelpURL>https://bp145.bluepark.build/api/v1/help/orders</HelpURL>
    <Number>DS10001</Number>
    <Channel>
      <ID>0</ID>
      <Name />
      <OrderID>0</OrderID>
      <OrderNumber />
    </Channel>
    <Date>2023-07-10T08:52:41+01:00</Date>
    <InvoiceNumber>ABC123</InvoiceNumber>
    <InvoiceDate>2023-07-11T00:00:00</InvoiceDate>
    <Status>
      <ID>1</ID>
      <Name>Pending</Name>
    </Status>
    <CustomStatus>
      <ID>0</ID>
      <Name />
    </CustomStatus>
    <IsPaid>false</IsPaid>
    <PlacedBy>zynk</PlacedBy>
    <CompletedBy />
    <UserID>0</UserID>
    <Email>[email protected]</Email>
    <IsContactAllowed>false</IsContactAllowed>
    <UserGroup>
      <ID>0</ID>
      <Name />
    </UserGroup>
    <BillingAddress>
      <Title>Mr</Title>
      <TitleID>1</TitleID>
      <FirstName>Joe</FirstName>
      <LastName>Harrison</LastName>
      <Company>Zynk Software Ltd</Company>
      <AddressLine1>6 Charlotte Square</AddressLine1>
      <AddressLine2>Office 16, I6 Business Centre</AddressLine2>
      <City>Newcastle</City>
      <County>Tyne and Wear</County>
      <Postcode>NE1 4XF</Postcode>
      <Country>United Kingdom</Country>
      <CountryCode>GB</CountryCode>
      <Telephone>0191 820 1484</Telephone>
    </BillingAddress>
    <ShippingAddress>
      <Title>Mr</Title>
      <TitleID>1</TitleID>
      <FirstName>Joe</FirstName>
      <LastName>Harrison</LastName>
      <Company>Zynk Software Ltd</Company>
      <AddressLine1>6 Charlotte Square</AddressLine1>
      <AddressLine2>Office 16, I6 Business Centre</AddressLine2>
      <City>Newcastle</City>
      <County>Tyne and Wear</County>
      <Postcode>NE1 4XF</Postcode>
      <Country>United Kingdom</Country>
      <CountryCode>GB</CountryCode>
      <Telephone>0191 820 1484</Telephone>
      <IsBillingMatch>true</IsBillingMatch>
    </ShippingAddress>
    <Currency>GBP</Currency>
    <VATRate>20</VATRate>
    <VAT>exc</VAT>
    <PaymentMethod>
      <Value>offline</Value>
      <Description>Offline</Description>
    </PaymentMethod>
    <PaymentTotal>124.4</PaymentTotal>
    <OrderProducts>
      <OrderProduct>
        <ID>2</ID>
        <SKU>PTE198</SKU>
        <ProductID>2836</ProductID>
        <Title>82mm Underground Drainage Pipe x 3m P/E</Title>
        <Category>
          <ID>6264</ID>
          <Title>82mm Underground Drainage</Title>
        </Category>
        <Brand>
          <ID>40</ID>
          <Name>Polypipe</Name>
        </Brand>
        <Quantity>2</Quantity>
        <VATRate>20</VATRate>
        <UnitPrice>47.36</UnitPrice>
        <Subtotal>94.72</Subtotal>
      </OrderProduct>
    </OrderProducts>
    <Total>103.67</Total>
    <TotalIncludingVAT>124.4</TotalIncludingVAT>
    <TotalVAT>20.73</TotalVAT>
  </Order>
</Orders>