Articles

Articles are the identities of physical goods stored at the warehouse.

Schema: Article

PropertyTypeDescription
idObjectIdUnique identifier
nameStringArticle name
skuStringStock keeping unit
barcodesArrayArray of barcodes that identifies the article (EAN etc)
weightIntegerArticles weight in grams
clientObjectIdClient identifier
control.expirationBooleanTrue if article uses expiration date markings
control.batchBooleanTrue if article uses batch numbers
control.serialBooleanTrue if article uses serial numbers
control.refrigerationBooleanTrue if article needs to be stored refrigerated numbers
harmonized_system_codeStringThe article harmonized system code
customs.valueIntegerSales value of article (in cents)
customs.currencyStringCurrency code (ISO 4217)
united_nations_numbersArrayUN numbers identifying hazardous materials
manufacturing_countryStringCountry of origin (ISO 3166-1 Alpha-3)
createdDateTime when the article was created
updatedDateTime when the article was last modified

Get a list of articles

If you want to retrieve a list of articles, use this GET request:

GET https://api.tirix.io/articles

Get an article

If you want to fetch an individual article, use this GET request:

GET https://api.tirix.io/articles/{article_id}

Create a new article

If you want to create a new article, use this POST request:

POST https://api.tirix.io/articles

Modify an article

If you want to modify a specific article, use this PUT request:

PUT https://api.tirix.io/articles/{article_id}

Delete an article

Articles are persistent and can not be irreversibly deleted.

Edges

Stock

If you want to fetch stock information for an individual article, use this GET request:

GET https://api.tirix.io/articles/{article_id}/stock
Last Updated: