POST api/deals/{dealId}/activities
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dealId | integer |
Required |
Body Parameters
CommentCreateDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Text | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Text": "sample string 1"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RowActivityDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | decimal number |
Required |
|
| Type | ActivityType |
Required |
|
| When | date |
Required |
|
| Who | string |
None. |
|
| Deal | DealInfoDTO |
None. |
|
| Title | string |
None. |
|
| Description | string |
Required |
Response Formats
application/json, text/json
Sample:
{
"EventId": 1.0,
"Type": "Alert",
"When": "2026-02-05T20:36:53.725492-08:00",
"Who": "sample string 3",
"Deal": {
"DealId": 1,
"Name": "sample string 2"
},
"Title": "sample string 4",
"Description": "sample string 5"
}