Peoplevox XML Item Types
Zynk will import the data using the standard fields under Integration Templates that can be ran configured your Peoplevox web application. Note, the fields must use the default names, you can import the correct configuration using the file below.
Tasks
Integration Templates
Item Type
ItemCode,Name,Barcode,ItemGroup,RetailPrice,Description,UnitOfMeasure,DefaultEconomicOrderQuantity,DefaultLeadTime,DefaultSuppliersPartNumber,HasSerialNumbers,UseManufacturersSerialNumber,ReorderPoint,Traceability,ShelfLife,DefaultNumberItemsPerContainer,DefaultContainerType,DefaultNumberItemsPerOuterCase,DefaultNumberItemsPerInnerCase,BuyPrice,WholesalePrice,RetailPrice,Weight,WeightMeasure,Height,Width,Depth,DimensionMeasure,Tags,Attribute1,Attribute2,Attribute3,TaxCode,MinimumPickLocationQuantity,DefaultReplenishmentQuantity
Item Type Group
Name,ProductGroup
Identifiers
For inserting or updating records to Peoplevox Zynk uses the ItemCode field on an ItemType. It is invalid to insert / update an ItemType without providing the ItemCode.
Fields
ItemCode
Required
Item code.
Type | Example | XML |
---|---|---|
string(50) | PROD001 | <ItemCode>PROD001</ItemCode> |
Name
Optional
Name.
Type | Example | XML |
---|---|---|
string(50) | Sample Product | <Name>Sample Product</Name> |
Barcode
Required
Barcode.
Type | Example | XML |
---|---|---|
string(50) | 123456789 | <Barcode>123456789</Barcode> |
Description
Optional
Description.
Type | Example | XML |
---|---|---|
string(250) | Sample product for Peoplevox | <Description>Sample product for Peoplevox</Description> |
ItemGroup
Optional (see also ItemTypeGroup)
Item type group name.
Type | Example | XML |
---|---|---|
string(50) | Stock | <ItemGroup>Stock</ItemGroup> |
UnitOfMeasure
Optional
Unit of measure (optional, EA by default).
Type | Example | XML |
---|---|---|
string(10) | 0191 820 1484 | <UnitOfMeasure>Unit</UnitOfMeasure> |
DefaultEconomicOrderQuantity
Optional
Default economic order quantity.
Type | Example | XML |
---|---|---|
int | 1 | <DefaultEconomicOrderQuantity>1</DefaultEconomicOrderQuantity> |
DefaultLeadTime
Optional
Default lead time.
Type | Example | XML |
---|---|---|
int | 10 | <DefaultLeadTime>10</DefaultLeadTime> |
DefaultSuppliersPartNumber
Optional
Suppliers part number.
Type | Example | XML |
---|---|---|
string(50) | 02TEST | <DefaultSuppliersPartNumber>02TEST</DefaultSuppliersPartNumber> |
HasSerialNumber
Optional
Has serial number flag, false by default.
Type | Example | XML |
---|---|---|
boolean | true | <HasSerialNumber>true</HasSerialNumber> |
Available Values
- true
- false
UseManufacturersSerialNumber
Optional
Use manufacturers serial number flag, false by default.
Type | Example | XML |
---|---|---|
boolean | true | <UseManufacturersSerialNumber>true</UseManufacturersSerialNumber> |
Available Values
- true
- false
ReorderPoint
Optional
Reorder point.
Type | Example | XML |
---|---|---|
int | 1 | <ReorderPoint>1</ReorderPoint> |
Traceability
Optional
Traceability flag, false by default.
Type | Example | XML |
---|---|---|
boolean | true | <Traceability>true</Traceability> |
Available Values
- true
- false
ShelfLife
Optional
Date in yyyy-MM-dd HH:mm:ss format.
Type | Example | XML |
---|---|---|
datetime | 2017-04-10T00:00:00 | <ShelfLife>2017-04-10T00:00:00</ShelfLife> |
DefaultNumberItemsPerContainer
Optional
Default number items per container.
Type | Example | XML |
---|---|---|
int | 1 | <DefaultNumberOfItemsPerContainer>1</DefaultNumberOfItemsPerContainer> |
DefaultContainerType
Optional
Default container type.
Type | Example | XML |
---|---|---|
string(50) | test | <DefaultContainerType>test</DefaultContainerType> |
DefaultNumberItemsPerOuterCase
Optional
Default number items per outer case.
Type | Example | XML |
---|---|---|
int | 1 | <DefaultNumberItemsPerOuterCase>1</DefaultNumberItemsPerOuterCase> |
BuyPrice
Optional
Buy price.
Type | Example | XML |
---|---|---|
decimal | 1 | <BuyPrice>1</BuyPrice> |
WholesalePrice
Optional
Wholesale price.
Type | Example | XML |
---|---|---|
decimal | 2 | <WholesalePrice>2</WholesalePrice> |
RetailPrice
Optional
Retail price.
Type | Example | XML |
---|---|---|
decimal | 3 | <RetailPrice>3</RetailPrice> |
Weight
Optional
Weight.
Type | Example | XML |
---|---|---|
decimal | 1 | <Weight>1</Weight> |
WeightMeasure
Optional
Weight measure.
Type | Example | XML |
---|---|---|
string(10) | Pounds | <WeightMeasure>Pounds</WeightMeasure> |
Height
Optional
Height.
Type | Example | XML |
---|---|---|
decimal | 1 | <Height>1</Height> |
Width
Optional
Width.
Type | Example | XML |
---|---|---|
decimal | 1 | <Width>1</Width> |
Depth
Optional
Depth.
Type | Example | XML |
---|---|---|
decimal | 1 | <Depth>1</Depth> |
DimensionMeasure
Optional
Dimension measure.
Type | Example | XML |
---|---|---|
string(10) | Inches | <DimensionMeasure>Inches</DimensionMeasure> |
Tags
Optional
Tags.
Type | Example | XML |
---|---|---|
string(8000) | stock | <Tags>stock</Tags> |
Attribute1
Optional
Attribute 1.
Type | Example | XML |
---|---|---|
string(500) | attribute_1 | <Attribute1>attribute_1</Attribute1> |
Attribute2
Optional
Attribute 2.
Type | Example | XML |
---|---|---|
string(500) | attribute_2 | <Attribute2>attribute_2</Attribute2> |
Attribute3
Optional
Attribute 3.
Type | Example | XML |
---|---|---|
string(500) | attribute_2 | <Attribute3>attribute_3</Attribute3> |
ItemTypeGroup
Optional (see also ItemGroup)
Item type group.
Name
Optional
Item type group name.
Type | Example | XML |
---|---|---|
string(50) | Stock | <Name>Stock</Name> |
ParentGroup
Optional
Parent item type group name.
Type | Example | XML |
---|---|---|
string(50) | Items | <ParentGroup>Items</ParentGroup> |
Example XML
<?xml version="1.0" encoding="utf-8"?>
<ItemTypes
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ItemType>
<ItemCode>PROD001</ItemCode>
<Name>Sample Product</Name>
<Barcode>123456789</Barcode>
<Description>Sample product for Peoplevox</Description>
<ItemGroup>Stock</ItemGroup>
<UnitOfMeasure>Unit</UnitOfMeasure>
<DefaultEconomicOrderQuantity>1</DefaultEconomicOrderQuantity>
<DefaultLeadTime>10</DefaultLeadTime>
<DefaultSuppliersPartNumber>02TEST</DefaultSuppliersPartNumber>
<HasSerialNumber>true</HasSerialNumber>
<UseManufacturersSerialNumber>true</UseManufacturersSerialNumber>
<ReorderPoint>1</ReorderPoint>
<Traceability>true</Traceability>
<ShelfLife>2017-04-10T00:00:00</ShelfLife>
<DefaultNumberOfItemsPerContainer>1</DefaultNumberOfItemsPerContainer>
<DefaultContainerType>test</DefaultContainerType>
<DefaultNumberItemsPerOuterCase>1</DefaultNumberItemsPerOuterCase>
<BuyPrice>1</BuyPrice>
<WholesalePrice>2</WholesalePrice>
<RetailPrice>3</RetailPrice>
<Weight>1</Weight>
<WeightMeasure>Pounds</WeightMeasure>
<Height>1</Height>
<Width>1</Width>
<Depth>1</Depth>
<DimensionMeasure>test</DimensionMeasure>
<Tags>stock</Tags>
<Attribute1>attribute_1</Attribute1>
<Attribute2>attribute_2</Attribute2>
<Attribute3>attribute_3</Attribute3>
<ItemTypeGroup>
<Name>Stock</Name>
<ParentGroup>Items</ParentGroup>
</ItemTypeGroup>
</ItemType>
</ItemTypes>