POST api/Account/SendPushNotification

Request Information

URI Parameters

None.

Body Parameters

FCMNotificationDto
NameDescriptionTypeAdditional information
Type

byte

None.

DeviceType

byte

None.

Path

string

None.

Title

string

None.

Message

string

None.

Token

string

None.

CreatedDate

date

None.

TypeEnum

NotificationModule

None.

DeviceTypeEnum

DeviceType

None.

NotificationData

FCMNotificationDataDto

None.

Request Formats

application/json, text/json

Sample:
{
  "Type": 64,
  "DeviceType": 64,
  "Path": "sample string 3",
  "Title": "sample string 4",
  "Message": "sample string 5",
  "Token": "sample string 6",
  "CreatedDate": "2026-04-22T15:55:28.2210528+05:30",
  "TypeEnum": 64,
  "DeviceTypeEnum": 64,
  "NotificationData": {
    "Title": "sample string 1",
    "Status": "sample string 2",
    "Path": "sample string 3"
  }
}

application/xml, text/xml

Sample:
<FCMNotificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Parihaar.Models">
  <CreatedDate>2026-04-22T15:55:28.2210528+05:30</CreatedDate>
  <DeviceType>64</DeviceType>
  <Message>sample string 5</Message>
  <NotificationData>
    <Path>sample string 3</Path>
    <Status>sample string 2</Status>
    <Title>sample string 1</Title>
  </NotificationData>
  <Path>sample string 3</Path>
  <Title>sample string 4</Title>
  <Token>sample string 6</Token>
  <Type>64</Type>
</FCMNotificationDto>

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.