LogoLogo
Go to shoxl.comSupportHubContact support
2025.3
2025.3
  • Shoxl ERP Integration Guide
  • Introduction
  • Batch Interfaces
    • Customer Import
    • Gross Prices Import
    • Price Lists
    • Customer-specific Prices
    • Article Import
    • Related Article Import
    • Package Units Import
    • Order Export
    • Authorisation Import
    • User favorites
    • Profile Restricted Products
    • User Restricted products
    • Product Delivery scheme import
  • Webservice
    • GetProductInformation (SOAP)
    • GetProductInformations (REST)
    • PlaceOrder
    • GetOrderHistory
    • GetOrderHistoryDetail
    • GetReturnOrders (REST)
    • GetReturnOrderDetail (REST)
    • GetInvoiceHistory
    • GetInvoice
    • CalculateOrder
    • GetCustomerProducts
    • MatchCustomerProducts
  • ERP Cache Batch
    • Customers
    • Price Lists
    • Customer-specific Prices
    • Customer Products
    • Order history
    • Invoice history
    • Outstanding Item
    • Stock
    • Exchange Rate
    • Order Documents
    • Cleanup
    • Assembled Product
    • ItemCharge
    • Articles
  • General Patterns
    • Import file naming
    • Import file zipped XML
    • About Package Units, Price Unit and Accumulative Discounts
  • Version History
Powered by GitBook
On this page
  • Short description
  • Delivery method
  • Structure XML
  • Fields XML

Was this helpful?

  1. Batch Interfaces

User Restricted products

Short description

This import can be used to define restricted product lists on a per user basis. This can be done by providing XML files via FTP.

Delivery method

Update Frequency: Timed, every 5 minutes when a file has been provided

Incremental or complete set: Incremental

Filetype: XML

Filename: [clientname]_UserRestrictedProducts_[file identification].xml Transport: over FTPS, FTPS Vendisto server hosted by INTEGRACE, file will be placed on FTPS server by the shop.

Location within FTP root: \ShoxlPro\Agp

Structure XML

<?xml version="1.0" encoding="utf-8"?>
<Lists>
  <List>
    <Username>20312_012</Username>
    <Remainingbudget>100000.00</Remainingbudget>
    <Page>
      <PageName>Afkortgereedschap</PageName>
      <ProductNumbers>
        <ProductNumber>05508395</ProductNumber>
        <ProductNumber>0603.102</ProductNumber>
      </ProductNumbers>
    </Page>
    <Page>
      <PageName>Meten en diversen</PageName>
      <ProductNumbers>
        <ProductNumber>01401475</ProductNumber>
        <ProductNumber>01600942</ProductNumber>
      </ProductNumbers>
    </Page>
  </List>
  <List>
    <Username>20312_014</Username>
    <Remainingbudget>5000.00</Remainingbudget>
    <Page>
      <PageName>Afkortgereedschap</PageName>
      <ProductNumbers>
        <ProductNumber>05508395</ProductNumber>
      </ProductNumbers>
    </Page>
  </List>
</Lists>

Fields XML

Name

Description

Type

Occurs

List

Groups information for one user

node

1..x

Username

The username of the user to which this list applies

string

1..1

Remainingbudget

The budget remailing for the user to which this list applies

string

1..1

Page

Groups a certain set of articles

node

1..x

Pagename

The name used to identify the set of articles

string

1..1

Productnumbers

Groups the productnumbers within a set

node

1..1

Productnumber

Specifies the productnumber of an article within a set

string

1..x

Was this helpful?