Material tags
The API gives the ability to get all material tags. It is possible to filter tags by name using the 'name' query parameter.
Authorizations
x-api-keystringRequired
Query parameters
namestringOptional
Tag name
Header parameters
x-tenant-idstring Β· uuidOptional
Tenant id (uuid v4)
Responses
200Success
application/json
429
Returned when the rate limit is exceeded
get
/api/public/material-tagsThe API gives the ability to create a new material tag.
Authorizations
x-api-keystringRequired
Header parameters
x-tenant-idstring Β· uuidOptional
Tenant id (uuid v4)
Body
namestringRequiredExample:
Name of the material tag
High PrioritycolorstringRequiredExample:
Color code for the tag (hex format)
#FF5733Responses
201Success
application/json
429
Returned when the rate limit is exceeded
post
/api/public/material-tagsThe API gives the ability to delete an existing material tag.
Authorizations
x-api-keystringRequired
Path parameters
tag_idstringRequired
Tag ID
Header parameters
x-tenant-idstring Β· uuidOptional
Tenant id (uuid v4)
Responses
200Success
application/json
429
Returned when the rate limit is exceeded
delete
/api/public/material-tags/{tag_id}The API gives the ability to update an existing material tag.
Authorizations
x-api-keystringRequired
Path parameters
tag_idstringRequired
Tag ID
Header parameters
x-tenant-idstring Β· uuidOptional
Tenant id (uuid v4)
Body
namestringOptionalExample:
Name of the material tag
Medium PrioritycolorstringOptionalExample:
Color code for the tag (hex format)
#33A1FFResponses
200Success
application/json
429
Returned when the rate limit is exceeded
patch
/api/public/material-tags/{tag_id}Last updated