Article categories

More article category API information can be found here: REST API documentation - Article Categories

Create an article category

An article category can be created by performing the following POST call with the JSON body:

POST https://{YOUR-TENANT-NAME}.fulfillmenttools.com/api/articlecategories
{
  "nameLocalized": {
    "de_DE": "Lebensmittel",
    "en_US": "groceries"
  },
  "tenantCategoryId": "G-01"
}

If the request was successful, a 200 CREATED response is received with a body like this:

{
    "lastModified": "2025-04-25T09:06:54.737Z",
    "version": 1,
     "nameLocalized": {
        "de_DE": "Lebensmittel",
        "en_US": "groceries"
    },
    "tenantCategoryId": "G-01",
    "id": "1f6fe169-893f-4e95-8ac0-38c9e6eca068",
    "created": "2025-04-25T09:06:54.737Z",
    "name": "groceries"
}

Last updated