Tags

For more details about the Tags endpoint, refer to the REST API reference.

Create tags

A tag's allowedValues can only be extended. Once a value is added, it cannot be removed.

To create a tag, send a POST request to the /api/tags endpoint.

POST https://{YOUR-TENANT-NAME}.api.fulfillmenttools.com/api/tags
{
  "id": "channel",
  "allowedValues": [
    "marketplace",
    "webshop"
  ]
}

The field id must be unique across all tags.

Get tags

To retrieve all defined tags, send a GET request to the /api/tags endpoint.

GET https://{YOUR-TENANT-NAME}.api.fulfillmenttools.com/api/tags

The response body contains an array of tag objects:

Patch tags

Once a tag is created, new values can be added to its allowedValues array.

A successful request returns an HTTP 200 OK response with the updated tag object in the body:

The value amazon can now be used for the channel tag.

Last updated