Skip to main content

@wildix/classound-client > SyncEsimTransformsCommand

SyncEsimTransformsCommand class

Signature:

export declare class SyncEsimTransformsCommand extends SyncEsimTransformsCommand_base 

Extends: SyncEsimTransformsCommand_base

Example

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

import { ClassoundClient, SyncEsimTransformsCommand } from "@wildix/classound-client"; // ES Modules import
// const { ClassoundClient, SyncEsimTransformsCommand } = require("@wildix/classound-client"); // CommonJS import
const client = new ClassoundClient(config);
const input = { // SyncEsimTransformsInput
companyId: "STRING_VALUE",
transforms: [ // TransformEntryList // required
{ // TransformEntry
extension: "STRING_VALUE", // required
e164: "STRING_VALUE", // required
},
],
};
const command = new SyncEsimTransformsCommand(input);
const response = await client.send(command);
// { // SyncEsimTransformsOutput
// companyId: "STRING_VALUE", // required
// added: Number("int"), // required
// updated: Number("int"), // required
// deleted: Number("int"), // required
// errors: [ // TransformErrorList
// { // TransformError
// action: "STRING_VALUE",
// extension: "STRING_VALUE",
// error: "STRING_VALUE",
// },
// ],
// };