POST api/notification/project
Request Information
URI Parameters
None.
Body Parameters
ProjectMilestoneCommunication| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectCommunicationID | integer |
None. |
|
| ProjectSummaryID | integer |
Required |
|
| ProjectMilestoneID | integer |
Required |
|
| MessageTime | date |
Required |
|
| SenderID | integer |
Required |
|
| ReceiverID | integer |
Required |
|
| IsFromCompany | boolean |
Required |
|
| Subject | string |
None. |
|
| MessageContent | string |
None. |
|
| Status | integer |
Required |
|
| IsFile | boolean |
None. |
|
| FileName | string |
None. |
|
| ParentProjectCommunicationID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProjectCommunicationID": 1,
"ProjectSummaryID": 2,
"ProjectMilestoneID": 3,
"MessageTime": "2025-12-21T07:53:13.3656477+04:00",
"SenderID": 5,
"ReceiverID": 6,
"IsFromCompany": true,
"Subject": "sample string 8",
"MessageContent": "sample string 9",
"Status": 10,
"IsFile": true,
"FileName": "sample string 12",
"ParentProjectCommunicationID": 1
}
application/xml, text/xml
Sample:
<ProjectMilestoneCommunication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.DAO"> <FileName>sample string 12</FileName> <IsFile>true</IsFile> <IsFromCompany>true</IsFromCompany> <MessageContent>sample string 9</MessageContent> <MessageTime>2025-12-21T07:53:13.3656477+04:00</MessageTime> <ParentProjectCommunicationID>1</ParentProjectCommunicationID> <ProjectCommunicationID>1</ProjectCommunicationID> <ProjectMilestoneID>3</ProjectMilestoneID> <ProjectSummaryID>2</ProjectSummaryID> <ReceiverID>6</ReceiverID> <SenderID>5</SenderID> <Status>10</Status> <Subject>sample string 8</Subject> </ProjectMilestoneCommunication>
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.