POST api/Notifications/AddNotification
Request Information
URI Parameters
None.
Body Parameters
AddNotificationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserIdTo | integer |
None. |
|
| ActivityId | integer |
None. |
|
| NotifyMessage | string |
None. |
|
| FunctionalityId | integer |
None. |
|
| TeamId | integer |
None. |
|
| IsClicked | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserIdTo": 1,
"ActivityId": 2,
"NotifyMessage": "sample string 3",
"FunctionalityId": 4,
"TeamId": 5,
"IsClicked": 6
}
application/xml, text/xml
Sample:
<AddNotificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Focus247_2022.NotificationsModels"> <ActivityId>2</ActivityId> <FunctionalityId>4</FunctionalityId> <IsClicked>6</IsClicked> <NotifyMessage>sample string 3</NotifyMessage> <TeamId>5</TeamId> <UserIdTo>1</UserIdTo> </AddNotificationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.