Introduction

The NetXL API is a powerful set of tools that allow you to automate key interactions with us. These include getting real-time pricing and stock availability, requesting quotes, and creating and confirming orders.

The API is free and available to all trade customers, however to create an order you are required to have a credit account. Payment via PayPal and Credit/Debit card is not currently supported by the API.

The documentation below will show how to get the most out of the API. It includes code samples in several popular programming languages, as well as guides on using the API with several popular GUI based tools; perfect for customers with less development experience.

Getting Started

First things first, in order to use the API, you will need to create an API key. We use this to identify the requests you make as coming from your account, which ensures we return the correct information to you, and nobody else can see your pricing and order data.

To create an API key, visit the API section of the NetXL customer dashboard.

Your API key is unique to your account; you should not share it with anyone you do not trust, and you can disable it at any time or create a new key from your dashboard.

Accessing the API

There are two main ways to access the API. The most common is to build an integration using a programming language such as Python or Java. This allows you to automate calls to the API, tightly integrating into existing systems.

The other way is to use a graphical tool such as Postman or Paw (or even a Web Browser). This method lets you query the API for data on an ad-hoc basis, without any need for computer programming experience.

Response Data Formats - JSON & CSV

By default, the API will return all responses in JSON format. This is the best format for automated integrations, and is also human readable due to its structured layout and key/value structure. An example response for the /customer command is shown on the right.

Several API commands also support returning the response as a CSV file; this is useful for customers who wish to import the data into a third party such as Microsoft Excel or Google Sheets. How to return a CSV is explained below. Additionally, any requests made from a Web Browser will return a CSV by default, making it easy for you to create links to updated pricing or order information.

EXAMPLE JSON RESPONSE

Your First Request

Now that we have an API key and have decided on how to access the API (programmatically or with a tool), it's time to make our first request.

The NetXL API is a RESTful API. The base URL for the API is shown on the right.

For our first request, we'll ask the API to return our customer information, which includes our name, email address, and details of any credit account we hold.

NetXL API Endpoint

Authenticating your API requests

For every request you need to provide the API key as a form of authentication. There are two ways to do this, and you can choose whichever you prefer:

  1. Supply the key as a HTTP Header in the request
  2. Use a Query String in the URL to provide it

Provide the key as a HTTP header

To provide the API key as an extra HTTP header, include the following header in your HTTP requests

X-Api-Key: <your-api-key>

Provide the key using a query string

Providing the API key using a query string is a simple as appending the following key/value to the end of every URL you're making requests to

api-key=<your-api-key>

Query String Example

Selecting the response type

Some API commands support returning the response as a CSV file, useful for importing into third party application such as Microsoft Excel or Google Sheets.

To request the response as a CSV file you should set the 'Accept' header on your request to `text/csv` as follows

Accept: text/csv

All other requests should set the `Accept` header to `application/json`. This is currently the default response type, however it's recommend to send the header on every request to avoid confusion should this change for future commands.

Making the request

Now that you have everything set up, its time to make your first API request. We have a blog post containing examples of calling the API both using a programming language (Python) and a graphical tool (Postman).

  1. Read the API beginner's guide

GET /customer

Log in to try the API commands

RESPONSE

Error Handling

If you receive an error response from the API, the first thing you should check is the HTTP response status code.

Most errors are caused by invalid requests being sent to the API. In these cases we'll return a 4xx status code, and it should be possible to fix the error by making changes to the request you are sending.

You should double-check the documentation for the command in question, and it can also be helpful to consult the message returned in the response body, to see why the command failed.

In rare cases, the API can fail due to a server side issue. In this case we'll return a 5xx status code, and you'll likely not be able to fix the issue yourself. You can try the request again at a later date, or contact our support team for assistance.

Possible HTTP Error Codes

Below is a list of the most common error codes the API can return. You can read more about HTTP status codes here


400 Bad Request

Indicates that the API could not complete the request, check the response message for the cause of the error

401 Unauthorized

Your API key is not valid, please check it and try again

402 Payment Required

Insufficient available credit on your account.

404 Not Found

This indicates either the URL was not valid, or the object you requested does not exist, for example trying to query an invalid order reference

409 Conflict

The request could not be processed as it would cause duplicated data to be created. Check the response message for details

429 Too Many Requests

Your requests to the API have been rate limited, please wait 5 minutes and try your command again

500 Internal Server Error

An unexpected error occurred in the API, you should try your command again or contact support for assistance

503 Service Unavailable

The API is temporarily unavailable, try your command again in a few minutes

504 Gateway Timeout

A third party service the API relies on is unavailable, try your command again in a few minutes

Error Body Response
  • message string

    Indicates what cause the returned error, especially useful for diagnosing 4xx errors

POST /order

400 Bad Request

Rate Limiting

To ensure system stability and performance of the service, the rate of requests you can send to the API is limited. If you exceed the limit, you will receive a 429 HTTP status code response, and should retry your command after a short delay.

The Order and Quote creation commands are not rate limited.

Account Details & Addresses

These commands allow you to query your account details, including your credit status and shipping addresses.

Contact our support team if you wish to apply for a credit account.

Command Endpoints

Get your account details

Return the basic details of your account

Attributes
  • first_name string

    The first name of the account holder.

  • last_name string

    The surname of the account holder.

  • email_address string

    Login email address of the account holder.

  • accounts_email string optional

    Account email address that will receive copies of invoices

  • trade_account boolean

    Is your account flagged as a trade account.

  • credit_terms object optional

    Details of your credit account.

GET /customer

RESPONSE

Get your credit details

Return the details of your credit account, including your credit limit, total outstanding order value, and available credit. The response will also include details of any open orders.

Attributes
  • credit_limit number

    Your current account credit limit.

  • total_outstanding number

    Total outstanding value of unpaid orders.

  • available_credit number

    Available credit for new orders.

  • outstanding_orders list

    List of outstanding orders, detailing each due date and amount due.

GET /customer/credit

RESPONSE

Get Addresses

Return a list of all active addresses on the account. The "id" field can be used in the /order command to avoid having to supply full address data every time.

Attributes
  • id number

    ID of the address, provide this in the order command to use this address.

  • contact_name string

    The recipients name.

  • company_name string optional

    Name of the recipient company.

  • street_one string

    The first line of the recipients address.

  • street_two string optional

    Second line of the recipients address.

  • street_three string optional

    Third line of the recipients address.

  • city string

    Recipients city.

  • state string optional

    Recipients county.

  • zip string

    Recipients postal code.

  • country_code string

    The two letter country code of the address, should be a valid country from the ISO 3166-1 alpha-2 list

  • contact_number string

    Contact phone number for the recipient, this will be provided to the courier for delivery.

GET /customer/address

RESPONSE

Create delivery address

This command can be used to create a new address, whose ID can then be reused when creating orders.

Important! Please ensure the correct country code is provided; incorrect codes (such as GB for Jersey) will result in incorrect shipping estimates and may result in orders being cancelled.

For UK addresses, the 'contact_number' field can be provided in either local or international format (e.g. 0330043300 or +44330043300). For all other countries the number should always be provided in international format.

POST /customer/address

RESPONSE

Product Catalogue

One of the key features of the API is the ability to search and filter the product catalogue. Products can be filtered by manufacturer, category or attribute. The catalogue can additionally be searched using a free text field.

Each product that is returned will include a single, 5+ and 10+ price. These prices reflect any custom pricing or discounts applied to your account.

Real time stock info is returned for each product; the number available at the time of the request is returned in the product object. Additionally, trade account customers can see the expected arrival dates of new stock from manufacturers.

By default only a subset of the product data is returned, however, it is possible to request the additional data is returned in the command, as documented below. Please be aware that requesting additional data may reduce the response speed of the command.

ENDPOINTS

The Product Object

The product object provides comprehensive details about every product available via NetXL.

Product Object
  • sku string

    The SKU for the product, used in the order command

  • ean string

    The EAN of the product, this is normally a 13 digit EU EAN

  • weight_kg number

    Weight of the product (including box) in kilograms

  • box_width_mm number

    Width of the boxed product in millimeters

  • box_height_mm number

    Height of the boxed product in millimeters

  • box_length_mm number

    Length of the boxed product in millimeters

  • images list

    A list of product image details

  • availability object

    Availability data for the product

  • single_unit_cost number

    The net cost for a single unit based on your account pricing

  • five_plus_unit_cost number

    The net cost for 5 or more units based on your account pricing

  • ten_plus_unit_cost number

    The net cost for 10 or more units based on your account pricing

  • name string

    The name of the product

  • manufacturer string

    The product's manufacturer

  • description string

    Detailed information about the product, this is the same as the copy on the NetXL product pages

  • short_description string

    A summary of the key features of the product

  • store_url string

    A link to the product page on NetXL

  • categories list of string

    A list of categories this product belongs to

  • attributes key/value pairs

    A list of key/value pairs for the attributes applied to the product

  • related_products list of string

    A list of related product SKUs for this product

  • similar_products list of string

    A list of similar product SKUs for this product

Example Product Object

Searching the product catalogue

In order to search and filter the product catalogue, you should build up a query string to append to the end of the API endpoint (https://api.netxl.com/product). This query string allows you to filter the catalogue by manufacturers, categories, and attributes.

Query String Parameters
  • manufacturer string optional

    Filter results to certain brands, supply a comma delimited list (Grandstream,Ubiquiti,2N)

  • query string optional

    Free text search of the product name/details

  • category string optional

    category - Filter results to specific categories, e.g. IP Hardware PBX, Voip Adapters

  • inStock boolean optional

    When "true" only return in stock products (false has no effect)

  • sort string optional

    How to sort the returned results, must be one of - price, availability, sku or name

  • extra string optional

    List of extra fields to return in the response, supports the following fields: description, short_description, related, similar, description_html

  • attribute string optional

    List of attributes to filter by (see attribute filtering)

GET /product

RESPONSE

Attribute Filtering

String attributes can be filtered by equality, for example:

supports_poe=true

Number attributes can be filtered by < <= = => >, for example:

poe_ports>=16

This would query all switches with at least 16 PoE ports.

A list of attributes and their types can be obtained using the attribute list command.

GET /product?range>=300,range<=400

RESPONSE

Orders and Quotes

The API can be used to query your order history. Credit account customers can also create orders using their credit limit.

There are two ways to create an order. The first is a two step process, where the order must be confirmed using a secondary API call.

The other is a single call, that will create and confirm the order at once. Use this method when you do not require pricing or shipping quotes.

ENDPOINTS

The Order Object

  • id number

    A unique identifier for this order. Used for subsequent API requests referencing this order

  • order_reference string

    The NetXL order reference, starts either NXL or DUK depending on your packing choice

  • customer_reference string

    Your order reference

  • confirmation_code string

    The code required to confirm this order, orders can be confirmed for up to 7 days after they are created

  • items list

    A list of items in this order

  • cost_net number

    The net cost of the items in the order (does not including shipping)

  • cost_tax number

    The applicable tax for the order

  • cost_gross number

    The gross cost of the order

  • auto_confirm boolean

    Should this order be automatically confirmed

  • shipping_weight number

    The total weight of this order for shipping purposes

  • shipping_options list

    A list of valid shipping methods for this order, along with a cost for each

  • shipping_method number

    The shipping method to use for this order, must be one returned in the shipping_options list

  • billing_address object

    Billing address to use for the order, you can either provide the full address, or the ID of an existing address

  • shipping_address object

    Shipping address to use for the order, you can either provide the full address, or the ID of an existing address

Example Order Object

Creating an order

To create an order, you need to provide three key things to the API:

  1. A reference for you to identify this order
  2. A list of Item SKU's and quantities you wish to order
  3. The billing and shipping addresses

Additionally, if using auto confirmation, you will be required to provide a shipping method, or set a default method in the NetXL dashboard.

Providing the item list

For each item you wish to order, you are required to provide the SKU and the quantity of units required. SKU's can be obtained using the product catalogue search or from the NetXL website.

Billing & Shipping Addresses

For the addresses, you can either provide the full address details, or use an existing address by providing it's ID. If you provide both the details and an ID, then the ID will take priority and the details will be ignored.

Optional Additional Parameters

You may additionally provide the following additional parameters with your order request:

  1. auto_confirm: Should this order be automatically confirmed
  2. shipping_method: The shipping method to use for this order

POST /order

Order Created Successfully

Confirming an Order

Once you've created an order, you can check the pricing and shipping costs. If you're happy with these, you can use the confirmation_code provided to confirm the order. It's at this point that your order will be placed and entered into our fulfilment queue.

Confirming the order

To confirm the order, you need to provide a shipping method. If no shipping method is provided but you have a default method set on your account, we will try to use this where applicable (i.e. where the default method was returned in the shipping_options field). Otherwise you will receive an error response.

Upon confirming your order, the response will include an order ID and reference from NetXL. These can be used to query the order API, or when contacting NetXL for assistance.

PUT /order/<confirmation-code>

RESPONSE

Understanding Auto Confirmation

When creating an order, it's possible to skip the confirmation stage by setting `auto_confirm` to true in the original request.

In order to use auto-confirmation, you must send a shipping_method parameter in your request, or have a default shipping method set in your NetXL dashboard.

Invalid Shipping Method

If the shipping method you provided is not valid for the order, you will receive an error response. You can check the valid shipping methods by disabling auto-confirmation flag.

Pricing

Auto confirmed orders will use the current live price for each item. This may be more or less than the previous price paid for an item. NetXL will not provide refunds for differences in price where an item has increased in price. You may however still cancel an order prior to shipping.

Cancel or Amend Order

To cancel or make changes to an order, please raise a support ticket or call 0330 043 3000 for assistance.

Requesting a Quote

To request a quote for an order, send your POST request to /quote instead of /order. This will raise a ticket with NetXL customer support, who will create a quote for the requested items. You will be notified via email once the quote has been created.

POST /quote

Preconfiguration

Once an order has been created, you can then submit configuration details for any order items that support preconfiguration.

Parameters
  • configurations list

    A list of configuration details

POST /order/<order-id>/item/<item-id>/configuration

Configuration Submitted Successfully

Categories & Attributes

These commands can be used to obtain a list of categories and attributes that can then be used to filter the product catalogue.

Command Endpoints

Categories

Returns a list of categories and their names. These can be used to filter the product catalogue using the `category` query string parameter.
The Category Object
  • key string

    The identifier used by the api for this category

  • name string

    The human friendly name for this category

  • children list

    Subcategories of this category

GET /category

RESPONSE

Attributes

Returns a list of attributes and their possible values. These can be used to filter the product catalogue using the `attribute` query string parameter.
The Attribute Object
  • key string

    The identifier used by the api for this attribute

  • name string

    The human friendly name for this attribute

  • type number

    What type of attribute this is, either Boolean (boolean), String (string) or Number (int), effects which filters can be used in the product catalogue search

  • possible_values list

    list of all possible values for this attribute, can be used to help filter the product catalogue

GET /attribute

RESPONSE

Manufacturers

Returns a list of manufacturers and their names. These can be used to filter the product catalogue using the `manufacturer` query string parameter.
The Manufacturer Object
  • key string

    The identifier used by the api for this manufacturer

  • name string

    The human friendly name for this manufacturer

GET /manufacturer

RESPONSE