GET api/deals/pipeline
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CollectionPipelineDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
Required |
|
| Pipeline | Collection of RowDealPipelineDTO |
Required |
|
| TotalClosedAmountYTD | decimal number |
Required |
|
| ClosedYTD | Collection of RowDealClosedDTO |
Required |
Response Formats
application/json, text/json
Sample:
{
"Type": "sample string 1",
"Pipeline": [
{
"DealId": 1,
"Name": "sample string 2",
"Status": "Unknown",
"ProductType": "Unknown",
"AcquisitionType": "Unknown",
"Amount": 3.0,
"StatusSince": "2026-02-06T06:44:05.1213341-08:00"
},
{
"DealId": 1,
"Name": "sample string 2",
"Status": "Unknown",
"ProductType": "Unknown",
"AcquisitionType": "Unknown",
"Amount": 3.0,
"StatusSince": "2026-02-06T06:44:05.1213341-08:00"
}
],
"TotalClosedAmountYTD": 2.0,
"ClosedYTD": [
{
"DealId": 1,
"Name": "sample string 2",
"Amount": 3.0,
"When": "2026-02-06T06:44:05.1213341-08:00"
},
{
"DealId": 1,
"Name": "sample string 2",
"Amount": 3.0,
"When": "2026-02-06T06:44:05.1213341-08:00"
}
]
}