GET api/deals/{dealId}/activities
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dealId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CollectionActivityDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
Required |
|
| Total | integer |
Required |
|
| LastEdited | date |
None. |
|
| Rows | Collection of RowActivityDTO |
Required |
Response Formats
application/json, text/json
Sample:
{
"Type": "sample string 1",
"Total": 2,
"LastEdited": "2026-02-05T20:36:53.477473-08:00",
"Rows": [
{
"EventId": 1.0,
"Type": "Alert",
"When": "2026-02-05T20:36:53.4794747-08:00",
"Who": "sample string 3",
"Deal": {
"DealId": 1,
"Name": "sample string 2"
},
"Title": "sample string 4",
"Description": "sample string 5"
},
{
"EventId": 1.0,
"Type": "Alert",
"When": "2026-02-05T20:36:53.4794747-08:00",
"Who": "sample string 3",
"Deal": {
"DealId": 1,
"Name": "sample string 2"
},
"Title": "sample string 4",
"Description": "sample string 5"
}
]
}