POST DriversUpdateTemplateDownloadOrder
Creates a background process to generate and download a driver update template.
Request Information
URI Parameters
None.
Body Parameters
A object containing the search filters used to determine which drivers to include in the template.
DriversUpdateTemplateFilterDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Name | string |
None. |
|
| Identifications | Collection of globally unique identifier |
None. |
|
| Rules | Collection of globally unique identifier |
None. |
|
| Classification1 | Collection of globally unique identifier |
None. |
|
| Classification2 | Collection of globally unique identifier |
None. |
|
| Classification3 | Collection of globally unique identifier |
None. |
|
| Classification4 | Collection of globally unique identifier |
None. |
|
| SearchText | string |
None. |
|
| Active | boolean |
None. |
|
| IdentificationsUse | IdentificationsUseEnum |
None. |
|
| IdentificationStatus | IdentificationStatusFilterEnum |
None. |
Request Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"Name": "sample string 2",
"Identifications": [
"1c9f0658-88e7-4133-a7d8-9f67c38d34d3",
"b92c6155-69db-40a0-9d55-c05be30dc41f"
],
"Rules": [
"c2dff12e-1198-49d2-b31b-396b7366482c",
"6bd18372-5974-48ad-8c2b-b9a9607fcd9d"
],
"Classification1": [
"0cece196-9008-4b2e-8a0b-7964a0f49653",
"afde4de3-a0f8-47d1-9a8f-5c03c119120b"
],
"Classification2": [
"9850d880-d46b-4a35-ae3a-0f5521a9ece5",
"fd2fe717-4019-4003-8c4e-b2c2a6a367f6"
],
"Classification3": [
"815633b7-a59d-4cc8-8c18-2dea3b34cd7b",
"6d9da250-a26e-465a-a932-1235b1604e48"
],
"Classification4": [
"2cbcf7d2-f041-412a-a07e-264edf39d6e0",
"62a5d719-9fe9-46d3-9e81-714473d3fe1e"
],
"SearchText": "sample string 3",
"Active": true,
"IdentificationsUse": 0,
"IdentificationStatus": 0
}
application/xml, text/xml
Sample:
<DriversUpdateTemplateFilterDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<Active>true</Active>
<Classification1 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>0cece196-9008-4b2e-8a0b-7964a0f49653</d2p1:guid>
<d2p1:guid>afde4de3-a0f8-47d1-9a8f-5c03c119120b</d2p1:guid>
</Classification1>
<Classification2 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>9850d880-d46b-4a35-ae3a-0f5521a9ece5</d2p1:guid>
<d2p1:guid>fd2fe717-4019-4003-8c4e-b2c2a6a367f6</d2p1:guid>
</Classification2>
<Classification3 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>815633b7-a59d-4cc8-8c18-2dea3b34cd7b</d2p1:guid>
<d2p1:guid>6d9da250-a26e-465a-a932-1235b1604e48</d2p1:guid>
</Classification3>
<Classification4 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>2cbcf7d2-f041-412a-a07e-264edf39d6e0</d2p1:guid>
<d2p1:guid>62a5d719-9fe9-46d3-9e81-714473d3fe1e</d2p1:guid>
</Classification4>
<Code>sample string 1</Code>
<IdentificationStatus>Both</IdentificationStatus>
<Identifications xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>1c9f0658-88e7-4133-a7d8-9f67c38d34d3</d2p1:guid>
<d2p1:guid>b92c6155-69db-40a0-9d55-c05be30dc41f</d2p1:guid>
</Identifications>
<IdentificationsUse>Fleet</IdentificationsUse>
<Name>sample string 2</Name>
<Rules xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>c2dff12e-1198-49d2-b31b-396b7366482c</d2p1:guid>
<d2p1:guid>6bd18372-5974-48ad-8c2b-b9a9607fcd9d</d2p1:guid>
</Rules>
<SearchText>sample string 3</SearchText>
</DriversUpdateTemplateFilterDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
An HTTP result containing a indicating whether the operation succeeded, along with a notification message.
DriversUpdateTemplateDownloadOrderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Success": true
}
application/xml, text/xml
Sample:
<DriversUpdateTemplateDownloadOrderDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model.Driver"> <Message>sample string 1</Message> <Success>true</Success> </DriversUpdateTemplateDownloadOrderDto>