export enum GatewayResponseStatus
{
Initiated = 'Initiated',
Successful = 'Successful',
JobError = 'JobError',
}
export class GatewayTaskResponse
{
public ReferenceId: string;
public GatewayTaskResponseStatus: GatewayResponseStatus;
public Payload: string;
public constructor(init?: Partial<GatewayTaskResponse>) { (Object as any).assign(this, init); }
}
export class BaseQueueMessage
{
public LicenseeId: string;
public constructor(init?: Partial<BaseQueueMessage>) { (Object as any).assign(this, init); }
}
export class GatewayTask extends BaseQueueMessage
{
public ReferenceId: string;
public JobTypeId: string;
public IsBeingProcessed: boolean;
public Payload: string;
public ContentStoredExternally: boolean;
public ResendRequest: boolean;
public constructor(init?: Partial<GatewayTask>) { super(init); (Object as any).assign(this, init); }
}
export class SendTask
{
public GatewayTask: GatewayTask;
public constructor(init?: Partial<SendTask>) { (Object as any).assign(this, init); }
}
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 /jsonl/reply/SendTask HTTP/1.1
Host: production-eros-gateway-api-sms-wa.azurewebsites.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"GatewayTask":{"ReferenceId":"00000000000000000000000000000000","JobTypeId":"00000000000000000000000000000000","IsBeingProcessed":false,"Payload":"String","ContentStoredExternally":false,"ResendRequest":false,"LicenseeId":"00000000000000000000000000000000"}}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"ReferenceId":"00000000000000000000000000000000","GatewayTaskResponseStatus":"Initiated","Payload":"String"}