POST api/Customer/InsertNotification
Documentation for 'InsertNotification'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| model | Documentation for 'model'. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"ID": "sample string 1",
"CustomerID": "sample string 2",
"Title": "sample string 3",
"Message": "sample string 4",
"IsRead": true,
"IsDeleted": true,
"Created": "2026-06-06T04:23:34.0315542+07:00"
}
application/xml, text/xml
Sample:
<CustomerNotificationModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ID>sample string 1</ID> <CustomerID>sample string 2</CustomerID> <Title>sample string 3</Title> <Message>sample string 4</Message> <IsRead>true</IsRead> <IsDeleted>true</IsDeleted> <Created>2026-06-06T04:23:34.0315542+07:00</Created> </CustomerNotificationModel>