POST Api/MsgMngr/Send

Request Information

URI Parameters

None.

Body Parameters

MsgRequest
NameDescriptionTypeAdditional information
mPhone

string

None.

mTitle

string

None.

mText

string

None.

OrdId

integer

None.

EmpId

integer

None.

isSMS

boolean

None.

isFBase

boolean

None.

FBaseType

Collection of FCMType

None.

isCall

boolean

None.

isAdmin

boolean

None.

IsOTP

boolean

None.

MTNSrv

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "mPhone": "sample string 1",
  "mTitle": "sample string 2",
  "mText": "sample string 3",
  "OrdId": 4,
  "EmpId": 5,
  "isSMS": true,
  "isFBase": true,
  "FBaseType": [
    1,
    1
  ],
  "isCall": true,
  "isAdmin": true,
  "IsOTP": true,
  "MTNSrv": true
}

application/xml, text/xml

Sample:
<MsgRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DMSAPI.Features.Msg.SendMsg">
  <EmpId>5</EmpId>
  <FBaseType xmlns:d2p1="http://schemas.datacontract.org/2004/07/DMSAPI">
    <d2p1:FCMType>Customer</d2p1:FCMType>
    <d2p1:FCMType>Customer</d2p1:FCMType>
  </FBaseType>
  <IsOTP>true</IsOTP>
  <MTNSrv>true</MTNSrv>
  <OrdId>4</OrdId>
  <isAdmin>true</isAdmin>
  <isCall>true</isCall>
  <isFBase>true</isFBase>
  <isSMS>true</isSMS>
  <mPhone>sample string 1</mPhone>
  <mText>sample string 3</mText>
  <mTitle>sample string 2</mTitle>
</MsgRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.