POST api/Account/UpsertNotificationToken

Request Information

URI Parameters

None.

Body Parameters

NotificationModel
NameDescriptionTypeAdditional information
id

integer

None.

token

string

None.

type

string

None.

device_id

string

None.

created_date

date

None.

is_active

integer

None.

is_deleted

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "token": "sample string 2",
  "type": "sample string 3",
  "device_id": "sample string 4",
  "created_date": "2025-05-08T15:32:58.069588+05:30",
  "is_active": 6,
  "is_deleted": 7
}

application/xml, text/xml

Sample:
<NotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model">
  <created_date>2025-05-08T15:32:58.069588+05:30</created_date>
  <device_id>sample string 4</device_id>
  <id>1</id>
  <is_active>6</is_active>
  <is_deleted>7</is_deleted>
  <token>sample string 2</token>
  <type>sample string 3</type>
</NotificationModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />