Skip to main content

@wildix/xbees-conversations-client > DeleteInboxTagCommand

DeleteInboxTagCommand class

Deletes an existing tag. This operation is idempotent.

Signature:

export declare class DeleteInboxTagCommand extends DeleteInboxTagCommand_base 

Extends: DeleteInboxTagCommand_base

Example

Use a bare-bones client and the command you need to make an API call.

import { ConversationsClient, DeleteInboxTagCommand } from "@wildix/xbees-conversations-client"; // ES Modules import
// const { ConversationsClient, DeleteInboxTagCommand } = require("@wildix/xbees-conversations-client"); // CommonJS import
const client = new ConversationsClient(config);
const input = { // DeleteInboxTagInput
tagId: "STRING_VALUE", // required
userId: "STRING_VALUE",
};
const command = new DeleteInboxTagCommand(input);
const response = await client.send(command);
// {};