Skip to content

Sage 200 Online Warehouse XML

All stock within Sage 200, regardless of type (Stock, Service/labour, or Miscellaneous), requires a holding location. By default, the HOME warehouse is created within Sage 200, you can then create your own warehouses. Further information can be found on the Sage 200 Online Warehouse API Documentation.

Tasks

Zynk does not currently support exporting or importing warehouses directly, but can be used within Sage 200 Online Stock Level XML as part of the export of stock level records.

Fields for Download Only

id

Read Only
Warehouse record Id.

Type Example XML
integer(int64) 1 <id>1</id>

name

Read Only
Warehouse name.

Type Example XML
string(20) HOME <name>HOME</name>

date_time_updated

Read Only
The date and time this entity was last updated (UTC).

Type Example XML
datetime 2017-05-15T16:04:40.42 <date_time_updated>2017-05-15T16:04:40.42</date_time_updated>

Example XML

Note, as warehouses are only used as part of stock level download the example is shown within the context of a stock level record but with all other fields removed. See Sage 200 Online Stock Level XML for full sample.

<?xml version="1.0" encoding="utf-8"?>
<WarehouseHoldings>
  <WarehouseHolding>
    ...
    <warehouse>
      <id>1</id>
      <name>HOME</name>
      <date_time_updated>2017-05-15T16:04:40.42</date_time_updated>
    </warehouse>
    ...
  </WarehouseHolding>
</WarehouseHoldings>