Skip to main content

@wildix/classound-client > GetEsimQrCodeCommand

GetEsimQrCodeCommand class

Signature:

export declare class GetEsimQrCodeCommand extends GetEsimQrCodeCommand_base 

Extends: GetEsimQrCodeCommand_base

Example

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

import { ClassoundClient, GetEsimQrCodeCommand } from "@wildix/classound-client"; // ES Modules import
// const { ClassoundClient, GetEsimQrCodeCommand } = require("@wildix/classound-client"); // CommonJS import
const client = new ClassoundClient(config);
const input = { // GetEsimQrCodeInput
companyId: "STRING_VALUE",
extension: "STRING_VALUE", // required
};
const command = new GetEsimQrCodeCommand(input);
const response = await client.send(command);
// { // GetEsimQrCodeOutput
// companyId: "STRING_VALUE", // required
// extension: "STRING_VALUE", // required
// iccid: "STRING_VALUE", // required
// activationCode: "STRING_VALUE", // required
// phone: "STRING_VALUE",
// };