Tag Groups
Create a new tag
This endpoint allows for the creation of a new Tag and its attribute values.
post/tag-groups/{tagGroupId}/tags
Path parameters
tagGroupIdstring required
Example:0f0e000-000d-0d00-000b-00db0d000fae
Unique UUID of the tag group.
Request body
Example request
{
"attributeValues": [
{
"attributeId": "0f0e000-000d-0d00-000b-00db0d000fae"
}
]
}Response
Tag group has been created
Example response
{
"id": "0f0e000-000d-0d00-000b-00db0d000fae",
"tagGroupId": "0f0e000-000d-0d00-000b-00db0d000fae",
"attributeValues": [
{
"attributeId": "0f0e000-000d-0d00-000b-00db0d000fae"
}
]
}