GET api/Admin/GetDistributorsImportDetails?batchId={batchId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| batchId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DistributorsImportDetailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ImportTriggerId | integer |
None. |
|
| ServiceProviderId | integer |
None. |
|
| ServiceProviderName | string |
None. |
|
| Jobs | integer |
None. |
|
| Errors | integer |
None. |
|
| Completed | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ImportTriggerId": 1,
"ServiceProviderId": 2,
"ServiceProviderName": "sample string 3",
"Jobs": 1,
"Errors": 1,
"Completed": true
},
{
"ImportTriggerId": 1,
"ServiceProviderId": 2,
"ServiceProviderName": "sample string 3",
"Jobs": 1,
"Errors": 1,
"Completed": true
}
]
text/html
Sample:
[{"ImportTriggerId":1,"ServiceProviderId":2,"ServiceProviderName":"sample string 3","Jobs":1,"Errors":1,"Completed":true},{"ImportTriggerId":1,"ServiceProviderId":2,"ServiceProviderName":"sample string 3","Jobs":1,"Errors":1,"Completed":true}]
application/xml, text/xml
Sample:
<ArrayOfDistributorsImportDetailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mediahuis.Models.Admin">
<DistributorsImportDetailModel>
<Completed>true</Completed>
<Errors>1</Errors>
<ImportTriggerId>1</ImportTriggerId>
<Jobs>1</Jobs>
<ServiceProviderId>2</ServiceProviderId>
<ServiceProviderName>sample string 3</ServiceProviderName>
</DistributorsImportDetailModel>
<DistributorsImportDetailModel>
<Completed>true</Completed>
<Errors>1</Errors>
<ImportTriggerId>1</ImportTriggerId>
<Jobs>1</Jobs>
<ServiceProviderId>2</ServiceProviderId>
<ServiceProviderName>sample string 3</ServiceProviderName>
</DistributorsImportDetailModel>
</ArrayOfDistributorsImportDetailModel>