POST api/Authentication/send-notification

Request Information

URI Parameters

None.

Body Parameters

PushRequestModel
NameDescriptionTypeAdditional information
MerchantCode

string

None.

MerchantName

string

None.

Message

string

None.

MerchantEventTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "MerchantCode": "sample string 1",
  "MerchantName": "sample string 2",
  "Message": "sample string 3",
  "MerchantEventTime": "2025-12-11T06:44:49.2739797-06:00"
}

application/xml, text/xml

Sample:
<AuthenticationController.PushRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ThreeS.Report.v2.Controllers">
  <MerchantCode>sample string 1</MerchantCode>
  <MerchantEventTime>2025-12-11T06:44:49.2739797-06:00</MerchantEventTime>
  <MerchantName>sample string 2</MerchantName>
  <Message>sample string 3</Message>
</AuthenticationController.PushRequestModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PushRequestModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.