Skip to main content

@wildix/wms-api-client > ReloadBroadcastsCommand

ReloadBroadcastsCommand class

Clear cache for broadcasts

Signature:

export declare class ReloadBroadcastsCommand extends ReloadBroadcastsCommand_base 

Extends: ReloadBroadcastsCommand_base

Example

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

import { WmsApiClient, ReloadBroadcastsCommand } from "@wildix/wms-api-client"; // ES Modules import
// const { WmsApiClient, ReloadBroadcastsCommand } = require("@wildix/wms-api-client"); // CommonJS import
const client = new WmsApiClient(config);
const input = {};
const command = new ReloadBroadcastsCommand(input);
const response = await client.send(command);
// { // ReloadBroadcastsOutput
// type: "result" || "error", // required
// result: "STRING_VALUE", // required
// };