| Requires any of the roles: | Client, Admin, Partner |
| POST | /communication/message/grandcom/sms | Sends an SMS to phone numbers provided. |
|---|
"use strict";
export class GrandcomMessage {
/** @param {{channel?:string,to?:string,content?:string,clientMessageId?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
channel;
/** @type {string} */
to;
/** @type {string} */
content;
/** @type {string} */
clientMessageId;
}
export class GrandcomResponseMsg {
/** @param {{apiMessageId?:string,accepted?:boolean,to?:string,error?:string,hasError?:boolean,msg?:GrandcomMessage}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
apiMessageId;
/** @type {boolean} */
accepted;
/** @type {string} */
to;
/** @type {string} */
error;
/** @type {boolean} */
hasError;
/** @type {GrandcomMessage} */
msg;
}
export class GrandcomMsgResponse {
/** @param {{messages?:GrandcomResponseMsg[],error?:string,ResponseStatus?:ResponseStatus}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {GrandcomResponseMsg[]} */
messages;
/** @type {string} */
error;
/** @type {ResponseStatus} */
ResponseStatus;
}
export class SendGrandcomSmsRequest {
/** @param {{Messages?:GrandcomMessage[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {GrandcomMessage[]}
* @description Messages to be Sent */
Messages = [];
}
JavaScript SendGrandcomSmsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /communication/message/grandcom/sms HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"Messages":[{"channel":"String","to":"String","content":"String","clientMessageId":"String"}]}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"messages":[{"apiMessageId":"String","accepted":false,"to":"String","error":"String","hasError":false,"msg":{"channel":"String","to":"String","content":"String","clientMessageId":"String"}}],"error":"String","ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}