Create Notification Tag
POST /api/v1/notifications/tags
Description
Creates a new notification tag in the system. This endpoint allows users to assign tags to notifications for organizational purposes. These tags help in filtering and categorizing notifications efficiently.
Headers:
tenantId(required): The unique identifier of the tenant creating the notification tag. This must be included in the request headers.
Request Body:
- Media Type:
application/json
Example Value
{
"name": "string",
"tenantId": "string",
"productId": "string"
}
Request Body Parameters:
- name (required): The name of the notification tag.
- tenantId (required): The ID of the tenant creating the tag.
- productId (optional): The associated product ID for which the tag is being created.