@wildix/classound-client > DeleteEsimEndpointCommand
DeleteEsimEndpointCommand class
Signature:
export declare class DeleteEsimEndpointCommand extends DeleteEsimEndpointCommand_base
Extends: DeleteEsimEndpointCommand_base
Example
Use a bare-bones client and the command you need to make an API call.
import { ClassoundClient, DeleteEsimEndpointCommand } from "@wildix/classound-client"; // ES Modules import
// const { ClassoundClient, DeleteEsimEndpointCommand } = require("@wildix/classound-client"); // CommonJS import
const client = new ClassoundClient(config);
const input = { // DeleteEsimEndpointInput
companyId: "STRING_VALUE",
serial: "STRING_VALUE", // required
};
const command = new DeleteEsimEndpointCommand(input);
const response = await client.send(command);
// { // DeleteEsimEndpointOutput
// status: "STRING_VALUE", // required
// companyId: "STRING_VALUE", // required
// serial: "STRING_VALUE", // required
// };