PTPSMS
Send SMS one by one
{{:: 'controllers.documentation.chooseFramework' | translate }}
npm install --save
niksms.library.javascript
import {
ApiV1,
LibOperationResultStatus,
StringDictionary
} from 'niksms';
export default class NikSmsApiV1Client{
private service: ApiV1
constructor(username: string, password: string, culture: string = "fa"){
this.service = new ApiV1(username, password, culture);
}
public async PtpSms(
senderNumber: string,
numbers: string[],
messages: string[],
sendOn?: Date | null,
sendType?: number | null,
yourMessageIds?: string[]
): Promise<string> {
const result = await this.service.PtpSmsAsList(senderNumber, numbers, messages, sendOn, sendType, yourMessageIds);
switch (result.Status)
{
case LibOperationResultStatus.Success:
return result.Data;
case LibOperationResultStatus.InvalidModel:
throw new Error("Some required inputs are misssing...");
case LibOperationResultStatus.UnAuthorized:
throw new Error("Some thing is wrong with your account (call support!)");
case LibOperationResultStatus.Failed:
throw new Error("Ooops its our fault!");
default:
throw new Error("You sould not be here... :D");
}
}
public async PtpSmsDictionary(
senderNumber: string,
recipients: StringDictionary<string>,
sendOn?: Date | null,
sendType?: number | null,
yourMessageIds?: string[]
): Promise<string> {
const result = await this.service.PtpSmsAsDictionary(senderNumber, recipients, sendOn, sendType, yourMessageIds);
switch (result.Status)
{
case LibOperationResultStatus.Success:
return result.Data;
case LibOperationResultStatus.InvalidModel:
throw new Error("Some required inputs are misssing...");
case LibOperationResultStatus.UnAuthorized:
throw new Error("Some thing is wrong with your account (call support!)");
case LibOperationResultStatus.Failed:
throw new Error("Ooops its our fault!");
default:
throw new Error("You sould not be here... :D");
}
}
}