Tags
Create tags
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/tagsThe 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