POST api/workplan/{PlanId}/comments
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PlanId | globally unique identifier |
Required |
Body Parameters
CommentPost| Name | Description | Type | Additional information |
|---|---|---|---|
| Comment | string |
None. |
|
| CC | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Comment": "sample string 1",
"CC": [
"655031dc-d1cf-447d-9eb8-00c491509549",
"42385afb-b847-436f-bbb1-ce7c8e93599d"
]
}
Response Information
Resource Description
TaskComment| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| UPN | globally unique identifier |
None. |
|
| PostDate | date |
None. |
|
| Comment | string |
None. |
|
| CC | Collection of globally unique identifier |
None. |
|
| Users | Collection of globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "f3a378ce-38e1-4e42-b9a1-5262bbbe9e1c",
"UPN": "7f3e6a6f-527c-4655-a2d0-efebe334c62e",
"PostDate": "2025-12-02T23:53:29.7181755+00:00",
"Comment": "sample string 4",
"CC": [
"bce5fd78-bd6e-497c-9609-245555fb6d02",
"86a52cca-8c9d-42de-8374-6f9d81a3b949"
],
"Users": [
"8cdf34c6-8bf2-450e-af7f-086339072c4a",
"950bc8ff-b114-409e-bbad-9dc46fdc42c9"
]
}