Delta International - eCommerce API (1.0.0)

Download OpenAPI specification:

The Delta International e-commerce API provides developers with an interface to connect their online store to fully automate the ordering process. For access to the API or other questions, please contact your contact person at Delta International.

Orders

Get orders.

Returns all orders associated with the API key used to perform the request.

Authorizations:
None
query Parameters
filter[created_at_min]
string <ISO 8601>
Example: filter[created_at_min]=YYYY-MM-DDThh:mm:ss

Show orders created after the specified date.

filter[created_at_max]
string <ISO 8601>
Example: filter[created_at_max]=YYYY-MM-DDThh:mm:ss

Show orders created before the specified date.

filter[updated_at_min]
string <ISO 8601>
Example: filter[updated_at_min]=YYYY-MM-DDThh:mm:ss

Show orders last updated after the specified date.

filter[updated_at_max]
string <ISO 8601>
Example: filter[updated_at_max]=YYYY-MM-DDThh:mm:ss

Show orders last updated before the specified date.

filter[number_webshop]
string
Example: filter[number_webshop]=100123

Show orders by the number of the order in the webshop.

sort
string
Enum: "number_webshop" "delivery_date" "created_at" "updated_at"
Examples:
  • sort=number_webshop - Sort the result by the webshop number (ascending)
  • sort=-number_webshop - Sort the result by the webshop number (descending)

Used to determine by which property the result will be ordered. Sorting is ascending by default and can be reversed by adding a hyphen (-) to the start of the property name.

page
integer
Example: page=1

The number of the results page to return.

limit
integer
Example: limit=50

Specifies the number of resources that a single response page contains. The default, and also the maximum, is a limit of 50 for this endpoint.

Responses

Response samples

Content type
application/json
{}

Create an order.

Create an new order associated with the API key used to perform the request.

Authorizations:
None
Request Body schema: application/json

Create order

object

Responses

Request samples

Content type
application/json
{
  • "order": {
    }
}

Response samples

Content type
application/json
{
  • "order": {
    }
}

Get a specific order.

Returns a single order based on the specified ID in the URL.

Authorizations:
None
path Parameters
order
required
string

the ID of the order to retrieve

Responses

Response samples

Content type
application/json
{
  • "order": {
    }
}

Pricing

Pricing.

Returns the price and stock for a single article based on the specified product- and customer number.

Authorizations:
None
path Parameters
customerNumber
required
string

The ID of the customer to retrieve the article pricing for.

articleNumber
required
string

The ID of the article to retrieve the pricing for.

Responses

Response samples

Content type
application/json
{
  • "article": {
    }
}