Material tags

Get all tags

get

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
get
/api/public/material-tags

Create tag

post

The 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
namestringRequired

Name of the material tag

Example: High Priority
colorstringRequired

Color code for the tag (hex format)

Example: #FF5733
Responses
post
/api/public/material-tags

Delete a tag

delete

The 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
delete
/api/public/material-tags/{tag_id}

Update tag

patch

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
namestringOptional

Name of the material tag

Example: Medium Priority
colorstringOptional

Color code for the tag (hex format)

Example: #33A1FF
Responses
200Success
application/json
patch
/api/public/material-tags/{tag_id}

Last updated