GET api/deals/{dealId}/import
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dealId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ImportDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ImportId | integer |
Required |
|
| ImportedBy | string |
Required |
|
| Timestamp | date |
Required |
|
| Sections | Collection of ImportKeyValueArrayDTO |
None. |
Response Formats
application/json, text/json
Sample:
{
"ImportId": 1,
"ImportedBy": "sample string 2",
"Timestamp": "2026-02-05T12:43:12.7503972-08:00",
"Sections": [
{
"Type": "sample string 1",
"Items": [
{
"Key": "sample string 1",
"Value": "sample string 2",
"Error": "No"
},
{
"Key": "sample string 1",
"Value": "sample string 2",
"Error": "No"
}
]
},
{
"Type": "sample string 1",
"Items": [
{
"Key": "sample string 1",
"Value": "sample string 2",
"Error": "No"
},
{
"Key": "sample string 1",
"Value": "sample string 2",
"Error": "No"
}
]
}
]
}