POST api/UserProfileNotification/Post
Request Information
URI Parameters
None.
Body Parameters
UserProfileNotificationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| UserProfileId | globally unique identifier |
None. |
|
| Title | string |
None. |
|
| Message | string |
None. |
|
| IsRead | boolean |
None. |
|
| Created | date |
None. |
|
| Modified | date |
None. |
|
| Deleted | date |
None. |
|
| NotificationUrl | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "18c287dd-b8bc-4907-97df-7dcd841c48d6",
"UserProfileId": "43ba54bd-1595-4cd4-936d-3da7d473a8c2",
"Title": "sample string 3",
"Message": "sample string 4",
"IsRead": true,
"Created": "2026-08-25T10:42:46.9739344+02:00",
"Modified": "2026-08-25T10:42:46.9739344+02:00",
"Deleted": "2026-08-25T10:42:46.9739344+02:00",
"NotificationUrl": "sample string 9"
}
application/xml, text/xml
Sample:
<UserProfileNotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nozala.Model"> <Created>2026-08-25T10:42:46.9739344+02:00</Created> <Deleted>2026-08-25T10:42:46.9739344+02:00</Deleted> <Id>18c287dd-b8bc-4907-97df-7dcd841c48d6</Id> <IsRead>true</IsRead> <Message>sample string 4</Message> <Modified>2026-08-25T10:42:46.9739344+02:00</Modified> <NotificationUrl>sample string 9</NotificationUrl> <Title>sample string 3</Title> <UserProfileId>43ba54bd-1595-4cd4-936d-3da7d473a8c2</UserProfileId> </UserProfileNotificationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |