POST api/Order/UpsertNotiifcation

Request Information

URI Parameters

None.

Body Parameters

Notification_message_DTO
NameDescriptionTypeAdditional information
id

integer

None.

title

string

None.

description

string

None.

type_id

integer

None.

is_read

integer

None.

is_active

integer

None.

created_date

date

None.

created_by

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "title": "sample string 2",
  "description": "sample string 3",
  "type_id": 4,
  "is_read": 5,
  "is_active": 6,
  "created_date": "2025-12-22T16:13:49.1398618+05:30",
  "created_by": 8
}

application/xml, text/xml

Sample:
<Notification_message_DTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NxModel">
  <created_by>8</created_by>
  <created_date>2025-12-22T16:13:49.1398618+05:30</created_date>
  <description>sample string 3</description>
  <id>1</id>
  <is_active>6</is_active>
  <is_read>5</is_read>
  <title>sample string 2</title>
  <type_id>4</type_id>
</Notification_message_DTO>

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/" />