digitaluapi

<back to all web services

SendGrandcomSmsRequest

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
POST/communication/message/grandcom/smsSends an SMS to phone numbers provided.

export class GrandcomMessage
{
    public channel: string;
    public to: string;
    public content: string;
    public clientMessageId: string;

    public constructor(init?: Partial<GrandcomMessage>) { (Object as any).assign(this, init); }
}

export class GrandcomResponseMsg
{
    public apiMessageId: string;
    public accepted: boolean;
    public to: string;
    public error: string;
    public hasError: boolean;
    public msg: GrandcomMessage;

    public constructor(init?: Partial<GrandcomResponseMsg>) { (Object as any).assign(this, init); }
}

export class GrandcomMsgResponse
{
    public messages: GrandcomResponseMsg[];
    public error: string;
    public ResponseStatus: ResponseStatus;

    public constructor(init?: Partial<GrandcomMsgResponse>) { (Object as any).assign(this, init); }
}

export class SendGrandcomSmsRequest
{
    /** @description Messages to be Sent */
    // @ApiMember(Description="Messages to be Sent", IsRequired=true)
    public Messages: GrandcomMessage[] = [];

    public constructor(init?: Partial<SendGrandcomSmsRequest>) { (Object as any).assign(this, init); }
}

TypeScript SendGrandcomSmsRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + 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"}}}