Skip to content

JTL-WAWI API (OnPrem) (1.2)

JTL-Wawi-Version: 1.12.0-alpha.14636

Introduction

Welcome to the JTL-WAWI technical API documentation. This guide is here to help developers understand how our REST API works and how it can be integrated into your existing systems. We'll delve into the details of authentication and data manipulation processes, providing clear examples along the way. Whether you're a developer or an IT professional, this documentation aims to give you a practical understanding, laying the groundwork for effectively using the JTL-WAWI API to enhance your processes.

Authentication

You register your application with the API by sending a POST request with the required information and corresponding keys. You can find the exact request details at https://wawi-api.jtl-software.com/?#tag/appRegistration. This information has to include the following:

  • AppId
  • DisplayName
  • Description
  • Version
  • ProviderName
  • ProviderWebsite
  • MandatoryApiScopes

This data is crucial for identifying and registering your application with the API. The API uses it to generate a temporary authentication ID that allows your application to access the necessary resources. After successful validation of this information, you will receive the API key required for future authentication and API requests.

Before you can begin the registration process, you must open JTL-Wawi (new interface) and start the registration process under 'Admin->App registration'. Only at this point are you authorised to send the first API call. This step in JTL-Wawi ensures that your application is properly registered and has permission to use the API.

The API will send you an authentication ID in the form of a token. Once you have received this token and successfully completed the registration in JTL-Wawi, you will send another request to the API by including this authentication ID in the URL path.

After successful validation of this second request by the API and confirmation of the correct information, you will be provided with the actual API key. It is important to note that this API key will not be displayed again!

This API key will be used in the future to authenticate requests to the API. It is of utmost importance that you securely store the API key upon receipt, as it cannot be retrieved from any other location in the system.

HTTP Header

To make a successful API request, it is essential to include the correct authentication data in the request header. Upper case and lower case is ignored. The header should contain the following information:

  • X-AppID: This is the name of your application, in this case "MyApp/1.0.0". It is used to identify your application.
  • X-AppVersion: This is where the version number of your application is entered, in this case "1.0.0".
  • X-RunAs: Here, a JTL-Wawi user can be specified to perform an API call on their behalf (more details in the documentation).
  • X-ChallengeCode: You can enter any custom value here. The X-ChallengeCode is used during app registration and must be the same for all registration requests. The maximum length is 30 characters.
  • Authorization: The API key. Example: "Wawi 00000000-0000-00000-0000-000000000000"
Download OpenAPI description
Languages
Servers
Mock server

https://developer.jtl-software.com/_mock/products/erpapi/openapi/

Local OnPremise Environment

http://127.0.0.1:5883/api/eazybusiness/

Operations

wms

Query all pick lists for a specific wms warehouse that are not completed.
Operations
Operations

transactionStatus

Query all transaction status for sales order
Operations

tax

Returns the Taxrate for the given Item
Operations
Operations
Operations

stock

Query stocks for a specific item, warehouse or storage location
Operations

shippingmethod

Query all shipping methods
Operations
Operations
Operations

saleschannel

Get all sales channels
Operations

return

Create a new return with associated items and packages.
Operations
Operations
Operations

property

Query all properties for items
Operations

printer

Returns all Installed Printers
Operations

paymentmethod

Query all payment methods
Operations

onholdreason

Query all on hold reasons for sales orders
Operations

offer

Execute the printing of a Offer
Operations
Operations
Operations

Request

Query all Invoices

Security
Wawi
Query
salesOrderNumberstring

Search for a specific sales order number.

externalOrderNumberstring

Search for a specific external order number.

invoiceNumberstring

Search for a specific invoice number.

kArtikelinteger(int32)
kKundeinteger(int32)
IsExistingboolean
paymentStatusinteger(int32)(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoicePaymentStatus)

Search for a specific payment status.

Enum012
isExternalInvoiceboolean

Search only for external invoices

pageNumberinteger(int32)

Number of the page of items to fetch.

pageSizeinteger(int32)

Size of the page that is specified by pageNumber.

Headers
api-versionstring

Specify the desired API version, e.g. '1.0'. If not provided, the last available version is set.

x-appidstringrequired

This is the name of your application, e.g. "MyApp/1.0.0". It is used to identify your application.

x-appversionstringrequired

This is where the version number of your application is entered, e.g. "1.0.0".

x-runasstring

The User-Id (int or uuid) on whose behalf the request is executed. Requires scope 'Application.RunAs'.

X-SessionIdstring(uuid)

The id of a session in which the call will be executed.

curl -i -X GET \
  'https://developer.jtl-software.com/_mock/products/erpapi/openapi/invoices?salesOrderNumber=string&externalOrderNumber=string&invoiceNumber=string&kArtikel=0&kKunde=0&IsExisting=true&paymentStatus=0&isExternalInvoice=true&pageNumber=0&pageSize=0' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'X-SessionId: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
  -H 'api-version: string' \
  -H 'x-appid: string' \
  -H 'x-appversion: string' \
  -H 'x-runas: string'

Responses

Returns all non-pending sales orders.

Bodyapplication/json
totalItemsinteger(int32)required

Gets or sets the total number of items available in the data source.

pageNumberinteger(int32)required

Gets or sets the current page number in the paginated list.

pageSizeinteger(int32)required

Gets or sets the number of items per page in the paginated list.

itemsArray of objects(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.Invoice)required

Gets or sets the collection of items contained in the paged list.

items[].​idinteger(int32)(JTL.Data.Contracts.Keys.RechnungKey)required
items[].​numberstringrequired

The number of the invoice.

items[].​externalNumberstringrequired

The external number of the sales order.

items[].​companyIdinteger(int32)(JTL.Data.Contracts.Keys.FirmaKey)required
items[].​departureCountryobject(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoiceDepartureCountry)required

Model Class: InvoiceDepartureCountry

items[].​departureCountry.​countryISOstringrequired

ISO code of the departure country.

items[].​departureCountry.​statestringrequired

Name of the state in the departure country.

items[].​departureCountry.​currencyIsostringrequired

ISO code of the currency of the departure country.

items[].​departureCountry.​currencyFactornumber(decimal)required

The currency factor of the departure country.

items[].​customerIdinteger(int32)(JTL.Data.Contracts.Keys.KundeKey)required
items[].​billingAddressobject(JTL.Wawi.Rest.Contracts.Models.V1.Common.Address)required

Model Class: Address

items[].​billingAddress.​idinteger(int32)(JTL.Data.Contracts.Keys.AdresseKey)required
items[].​billingAddress.​companystringrequired

Description of the Company.

items[].​billingAddress.​company2stringrequired

Additional company information

items[].​billingAddress.​formOfAddressstringrequired

Customer form of address

items[].​billingAddress.​titlestringrequired

Official title

items[].​billingAddress.​firstNamestringrequired

Customer first name

items[].​billingAddress.​lastNamestringrequired

Customer last name

items[].​billingAddress.​streetstringrequired

Street name in the customer's address

items[].​billingAddress.​address2stringrequired

Additional address information

items[].​billingAddress.​postalCodestringrequired

Postal code of the customer's address

items[].​billingAddress.​citystringrequired

Name of city in the customer's address

items[].​billingAddress.​statestringrequired

Name of state in the customer's address

items[].​billingAddress.​countryIsostringrequired

Country ISO code

items[].​billingAddress.​vatIDstringrequired

Supplier VAT ID number

items[].​billingAddress.​phoneNumberstringrequired

Landline phone number

items[].​billingAddress.​mobilePhoneNumberstringrequired

Mobile phone number

items[].​billingAddress.​emailAddressstringrequired

Email address

items[].​billingAddress.​faxstringrequired

Fax number

items[].​shipmentAddressobject(JTL.Wawi.Rest.Contracts.Models.V1.Common.Address)required

Model Class: Address

items[].​shipmentAddress.​idinteger(int32)(JTL.Data.Contracts.Keys.AdresseKey)required
items[].​shipmentAddress.​companystringrequired

Description of the Company.

items[].​shipmentAddress.​company2stringrequired

Additional company information

items[].​shipmentAddress.​formOfAddressstringrequired

Customer form of address

items[].​shipmentAddress.​titlestringrequired

Official title

items[].​shipmentAddress.​firstNamestringrequired

Customer first name

items[].​shipmentAddress.​lastNamestringrequired

Customer last name

items[].​shipmentAddress.​streetstringrequired

Street name in the customer's address

items[].​shipmentAddress.​address2stringrequired

Additional address information

items[].​shipmentAddress.​postalCodestringrequired

Postal code of the customer's address

items[].​shipmentAddress.​citystringrequired

Name of city in the customer's address

items[].​shipmentAddress.​statestringrequired

Name of state in the customer's address

items[].​shipmentAddress.​countryIsostringrequired

Country ISO code

items[].​shipmentAddress.​vatIDstringrequired

Supplier VAT ID number

items[].​shipmentAddress.​phoneNumberstringrequired

Landline phone number

items[].​shipmentAddress.​mobilePhoneNumberstringrequired

Mobile phone number

items[].​shipmentAddress.​emailAddressstringrequired

Email address

items[].​shipmentAddress.​faxstringrequired

Fax number

items[].​invoiceDatestring(date-time)required

The date when the invoice was created.

items[].​invoicePaymentDetailsobject(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoicePaymentDetail)required

Model Class: InvoicePaymentDetail

items[].​invoicePaymentDetails.​paymentMethodIdinteger(int32)(JTL.Data.Contracts.Keys.ZahlungsartKey)required
items[].​invoicePaymentDetails.​paymentStatusinteger(int32)(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoicePaymentStatus)required

0 = UnPayed, 1 = PartialPayed, 2 = Payed

Enum012
items[].​invoicePaymentDetails.​totalGrossAmountnumber(decimal)required

The total gross amount of the invoice.

items[].​invoicePaymentDetails.​currencyIsostringrequired

ISO code of the currency of the invoice.

items[].​invoicePaymentDetails.​currencyFactornumber(decimal)required

The currency factor for the sales order at the time the sales order has been created.

items[].​invoicePaymentDetails.​stillToPaynumber(decimal)required

The amount that is left to pay for this invoice.

items[].​invoicePaymentDetails.​paymentTargetinteger(int32)required

The due date for payment of the sales order in days.

items[].​invoicePaymentDetails.​cashDiscountnumber(decimal)required

The cash discount of the sales order.

items[].​invoicePaymentDetails.​cashDiscountDaysinteger(int32)required

The days that the cash discount is valid.

items[].​invoicePaymentDetails.​stopPaymentRequestbooleanrequired

The creation of dunning letters is blocked.

items[].​invoicePaymentDetails.​dunningLevelinteger(int32)required

The stage at which dunning currently is

items[].​invoicePaymentDetails.​nextDueDatestring(date-time)required

The next due date

items[].​colorcodeIdinteger(int32)(JTL.Data.Contracts.Keys.FarbeKey)required
items[].​dunningBlockbooleanrequired

The creation of dunning letters is blocked.

items[].​isExternalInvoicebooleanrequired

Indicates if the invoice of the sales order was created in an external system like Amazon VCS.

items[].​commentstringrequired

A comment on the sales order.

items[].​customerCommentstringrequired

A customer comment on the sales order.

items[].​isCancelledbooleanrequired

Indicates if the invoice has been cancelled.

items[].​languageIsostringrequired

The language of the invoice.

items[].​cancellationDetailsobject(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoiceCancellationDetails)required

Model Class: InvoiceCancellationDetails

items[].​cancellationDetails.​cancellationReasonIdinteger(int32)(JTL.Data.Contracts.Keys.RechnungStornogrundKey)required
items[].​cancellationDetails.​cancellationCommentstringrequired

A comment that adds further information to the cancellation.

items[].​cancellationDetails.​datestring(date-time)required

The DateTime of Cancellation.

totalPagesinteger(int32)read-only

Gets the total number of pages based on the total number of items and the page size.

hasPreviousPagebooleanread-only

Gets a value indicating whether there is a previous page available in the paginated list.

hasNextPagebooleanread-only

Gets a value indicating whether there is a next page available.

nextPageNumberinteger(int32)read-only

Gets the number of the next page if there is one; otherwise, returns the total number of pages.

previousPageNumberinteger(int32)read-only

Gets the number of the previous page. If there is no previous page, it returns 1.

Response
application/json
{ "totalItems": 0, "pageNumber": 0, "pageSize": 0, "items": [ {} ], "totalPages": 0, "hasPreviousPage": true, "hasNextPage": true, "nextPageNumber": 0, "previousPageNumber": 0 }

Request

Get a specific invoice

Security
Wawi
Path
invoiceIdstringrequired
Headers
api-versionstring

Specify the desired API version, e.g. '1.0'. If not provided, the last available version is set.

x-appidstringrequired

This is the name of your application, e.g. "MyApp/1.0.0". It is used to identify your application.

x-appversionstringrequired

This is where the version number of your application is entered, e.g. "1.0.0".

x-runasstring

The User-Id (int or uuid) on whose behalf the request is executed. Requires scope 'Application.RunAs'.

X-SessionIdstring(uuid)

The id of a session in which the call will be executed.

curl -i -X GET \
  'https://developer.jtl-software.com/_mock/products/erpapi/openapi/invoices/{invoiceId}' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'X-SessionId: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
  -H 'api-version: string' \
  -H 'x-appid: string' \
  -H 'x-appversion: string' \
  -H 'x-runas: string'

Responses

Returns the invoice for the given ID.

Bodyapplication/json
idinteger(int32)(JTL.Data.Contracts.Keys.RechnungKey)required
numberstringrequired

The number of the invoice.

externalNumberstringrequired

The external number of the sales order.

companyIdinteger(int32)(JTL.Data.Contracts.Keys.FirmaKey)required
departureCountryobject(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoiceDepartureCountry)required

Model Class: InvoiceDepartureCountry

departureCountry.​countryISOstringrequired

ISO code of the departure country.

departureCountry.​statestringrequired

Name of the state in the departure country.

departureCountry.​currencyIsostringrequired

ISO code of the currency of the departure country.

departureCountry.​currencyFactornumber(decimal)required

The currency factor of the departure country.

customerIdinteger(int32)(JTL.Data.Contracts.Keys.KundeKey)required
billingAddressobject(JTL.Wawi.Rest.Contracts.Models.V1.Common.Address)required

Model Class: Address

billingAddress.​idinteger(int32)(JTL.Data.Contracts.Keys.AdresseKey)required
billingAddress.​companystringrequired

Description of the Company.

billingAddress.​company2stringrequired

Additional company information

billingAddress.​formOfAddressstringrequired

Customer form of address

billingAddress.​titlestringrequired

Official title

billingAddress.​firstNamestringrequired

Customer first name

billingAddress.​lastNamestringrequired

Customer last name

billingAddress.​streetstringrequired

Street name in the customer's address

billingAddress.​address2stringrequired

Additional address information

billingAddress.​postalCodestringrequired

Postal code of the customer's address

billingAddress.​citystringrequired

Name of city in the customer's address

billingAddress.​statestringrequired

Name of state in the customer's address

billingAddress.​countryIsostringrequired

Country ISO code

billingAddress.​vatIDstringrequired

Supplier VAT ID number

billingAddress.​phoneNumberstringrequired

Landline phone number

billingAddress.​mobilePhoneNumberstringrequired

Mobile phone number

billingAddress.​emailAddressstringrequired

Email address

billingAddress.​faxstringrequired

Fax number

shipmentAddressobject(JTL.Wawi.Rest.Contracts.Models.V1.Common.Address)required

Model Class: Address

shipmentAddress.​idinteger(int32)(JTL.Data.Contracts.Keys.AdresseKey)required
shipmentAddress.​companystringrequired

Description of the Company.

shipmentAddress.​company2stringrequired

Additional company information

shipmentAddress.​formOfAddressstringrequired

Customer form of address

shipmentAddress.​titlestringrequired

Official title

shipmentAddress.​firstNamestringrequired

Customer first name

shipmentAddress.​lastNamestringrequired

Customer last name

shipmentAddress.​streetstringrequired

Street name in the customer's address

shipmentAddress.​address2stringrequired

Additional address information

shipmentAddress.​postalCodestringrequired

Postal code of the customer's address

shipmentAddress.​citystringrequired

Name of city in the customer's address

shipmentAddress.​statestringrequired

Name of state in the customer's address

shipmentAddress.​countryIsostringrequired

Country ISO code

shipmentAddress.​vatIDstringrequired

Supplier VAT ID number

shipmentAddress.​phoneNumberstringrequired

Landline phone number

shipmentAddress.​mobilePhoneNumberstringrequired

Mobile phone number

shipmentAddress.​emailAddressstringrequired

Email address

shipmentAddress.​faxstringrequired

Fax number

invoiceDatestring(date-time)required

The date when the invoice was created.

invoicePaymentDetailsobject(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoicePaymentDetail)required

Model Class: InvoicePaymentDetail

invoicePaymentDetails.​paymentMethodIdinteger(int32)(JTL.Data.Contracts.Keys.ZahlungsartKey)required
invoicePaymentDetails.​paymentStatusinteger(int32)(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoicePaymentStatus)required

0 = UnPayed, 1 = PartialPayed, 2 = Payed

Enum012
invoicePaymentDetails.​totalGrossAmountnumber(decimal)required

The total gross amount of the invoice.

invoicePaymentDetails.​currencyIsostringrequired

ISO code of the currency of the invoice.

invoicePaymentDetails.​currencyFactornumber(decimal)required

The currency factor for the sales order at the time the sales order has been created.

invoicePaymentDetails.​stillToPaynumber(decimal)required

The amount that is left to pay for this invoice.

invoicePaymentDetails.​paymentTargetinteger(int32)required

The due date for payment of the sales order in days.

invoicePaymentDetails.​cashDiscountnumber(decimal)required

The cash discount of the sales order.

invoicePaymentDetails.​cashDiscountDaysinteger(int32)required

The days that the cash discount is valid.

invoicePaymentDetails.​stopPaymentRequestbooleanrequired

The creation of dunning letters is blocked.

invoicePaymentDetails.​dunningLevelinteger(int32)required

The stage at which dunning currently is

invoicePaymentDetails.​nextDueDatestring(date-time)required

The next due date

colorcodeIdinteger(int32)(JTL.Data.Contracts.Keys.FarbeKey)required
dunningBlockbooleanrequired

The creation of dunning letters is blocked.

isExternalInvoicebooleanrequired

Indicates if the invoice of the sales order was created in an external system like Amazon VCS.

commentstringrequired

A comment on the sales order.

customerCommentstringrequired

A customer comment on the sales order.

isCancelledbooleanrequired

Indicates if the invoice has been cancelled.

languageIsostringrequired

The language of the invoice.

cancellationDetailsobject(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoiceCancellationDetails)required

Model Class: InvoiceCancellationDetails

cancellationDetails.​cancellationReasonIdinteger(int32)(JTL.Data.Contracts.Keys.RechnungStornogrundKey)required
cancellationDetails.​cancellationCommentstringrequired

A comment that adds further information to the cancellation.

cancellationDetails.​datestring(date-time)required

The DateTime of Cancellation.

Response
application/json
{ "id": 0, "number": "string", "externalNumber": "string", "companyId": 0, "departureCountry": { "countryISO": "string", "state": "string", "currencyIso": "string", "currencyFactor": 0 }, "customerId": 0, "billingAddress": { "id": 0, "company": "string", "company2": "string", "formOfAddress": "string", "title": "string", "firstName": "string", "lastName": "string", "street": "string", "address2": "string", "postalCode": "string", "city": "string", "state": "string", "countryIso": "string", "vatID": "string", "phoneNumber": "string", "mobilePhoneNumber": "string", "emailAddress": "string", "fax": "string" }, "shipmentAddress": { "id": 0, "company": "string", "company2": "string", "formOfAddress": "string", "title": "string", "firstName": "string", "lastName": "string", "street": "string", "address2": "string", "postalCode": "string", "city": "string", "state": "string", "countryIso": "string", "vatID": "string", "phoneNumber": "string", "mobilePhoneNumber": "string", "emailAddress": "string", "fax": "string" }, "invoiceDate": "2019-08-24T14:15:22Z", "invoicePaymentDetails": { "paymentMethodId": 0, "paymentStatus": 0, "totalGrossAmount": 0, "currencyIso": "string", "currencyFactor": 0, "stillToPay": 0, "paymentTarget": 0, "cashDiscount": 0, "cashDiscountDays": 0, "stopPaymentRequest": true, "dunningLevel": 0, "nextDueDate": "2019-08-24T14:15:22Z" }, "colorcodeId": 0, "dunningBlock": true, "isExternalInvoice": true, "comment": "string", "customerComment": "string", "isCancelled": true, "languageIso": "string", "cancellationDetails": { "cancellationReasonId": 0, "cancellationComment": "string", "date": "2019-08-24T14:15:22Z" } }

Request

Query all line items for a specific invoice

Security
Wawi
Path
invoiceIdstringrequired
Headers
api-versionstring

Specify the desired API version, e.g. '1.0'. If not provided, the last available version is set.

x-appidstringrequired

This is the name of your application, e.g. "MyApp/1.0.0". It is used to identify your application.

x-appversionstringrequired

This is where the version number of your application is entered, e.g. "1.0.0".

x-runasstring

The User-Id (int or uuid) on whose behalf the request is executed. Requires scope 'Application.RunAs'.

X-SessionIdstring(uuid)

The id of a session in which the call will be executed.

curl -i -X GET \
  'https://developer.jtl-software.com/_mock/products/erpapi/openapi/invoices/{invoiceId}/lineitems' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'X-SessionId: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
  -H 'api-version: string' \
  -H 'x-appid: string' \
  -H 'x-appversion: string' \
  -H 'x-runas: string'

Responses

The requested line items.

Bodyapplication/jsonArray [
idinteger(int32)(JTL.Data.Contracts.Keys.RechnungPositionKey)required
invoiceIdinteger(int32)(JTL.Data.Contracts.Keys.RechnungKey)required
salesOrderIdinteger(int32)(JTL.Data.Contracts.Keys.VerkaufAuftragKey)required
salesOrderLineItemIdinteger(int32)(JTL.Data.Contracts.Keys.VerkaufAuftragPositionKey)required
itemIdinteger(int32)(JTL.Data.Contracts.Keys.ArtikelKey)required
namestringrequired

Name of the item.

skustringrequired

SKU of the sales invoice item.

typeinteger(int32)(JTL.Wawi.Rest.Contracts.Models.V1.Invoice.InvoiceLineItemType)required

0 = CustomLineItem, 1 = Item, 2 = Shipping, 3 = Coupon, 4 = Voucher, 5 = Payment, 6 = ShippingSurcharge, 7 = NewCustomerCoupon, 8 = CashOnDelivery, 9 = ShippingSurchargeItem, 10 = GiftWrapping, 11 = GiftForFree, 12 = TrustedShops, 13 = InterestPremium, 14 = ProcessingFee, 15 = Carton, 16 = ReturnDelivery, 17 = MultiPurposeVoucher, 18 = MultiPurposeVoucherDigital, 19 = SinglePurposeVoucher, 20 = SinglePurposeVoucherDigital, 21 = SinglePurposeVoucherRedemption

Enum0123456789
quantitynumber(decimal)required

The quantity of the line item.

salesUnitstringrequired

The measurement unit in which the line item is sold.

salesPriceNetnumber(decimal)required

The net sales price of the line item.

salesPriceGrossnumber(decimal)required

The gross sales price of the line item.

discountnumber(decimal)required

The discount applied to the line item.

purchasePriceNetnumber(decimal)required

The price for which the merchant has bought the item.

taxRatenumber(decimal)required

The tax rate of the line item.

]
Response
application/json
[ { "id": 0, "invoiceId": 0, "salesOrderId": 0, "salesOrderLineItemId": 0, "itemId": 0, "name": "string", "sku": "string", "type": 0, "quantity": 0, "salesUnit": "string", "salesPriceNet": 0, "salesPriceGross": 0, "discount": 0, "purchasePriceNet": 0, "taxRate": 0 } ]
Operations

features

Returns the available feature sets with release state and API version
Operations
Operations
Operations
Operations

customerGroup

Query all customer groups
Operations

customerCategory

Query all customer categories
Operations

creditnote

Execute the printing of a CreditNote
Operations
Operations

colorcodes

Query all color codes for sales orders
Operations
Operations

appRegistration

Send a registration request for an (external) application
Operations

login

Sends a request to log in the user / dynamically assign the WAWI user. Only use this request if your API uses SSL.
Operations

logout

Sends a request to log out the user
Operations
Operations
Operations