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": [
"cc05a0a2-e625-414f-a54e-f7e5eca2c3c8",
"b9099b3d-add9-4241-b6a2-6fc75ec132e7"
],
"Rules": [
"146c4067-fe9f-49e6-bbc7-7e9e5dd1bdd3",
"209ccc82-852c-42fe-adab-419cab71a00a"
],
"Classification1": [
"bdbc29e1-bd2e-4540-826e-01194a18ae64",
"ae65e476-82df-47bc-b707-ce45e07db00a"
],
"Classification2": [
"214d5f67-92cd-4611-b207-daa750abf7bd",
"6e75a576-e97c-45a7-bd72-8d5c1c4d1c06"
],
"Classification3": [
"63dd8c4e-bac2-4e64-9385-33f3041b6994",
"ac2b65ac-4383-4bfd-be16-07aa93ffd978"
],
"Classification4": [
"2e208a1b-1609-4708-b8f8-c57d5f82530a",
"bfbaacc1-382d-4c26-9f9e-f19ed853fbd2"
],
"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>bdbc29e1-bd2e-4540-826e-01194a18ae64</d2p1:guid>
<d2p1:guid>ae65e476-82df-47bc-b707-ce45e07db00a</d2p1:guid>
</Classification1>
<Classification2 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>214d5f67-92cd-4611-b207-daa750abf7bd</d2p1:guid>
<d2p1:guid>6e75a576-e97c-45a7-bd72-8d5c1c4d1c06</d2p1:guid>
</Classification2>
<Classification3 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>63dd8c4e-bac2-4e64-9385-33f3041b6994</d2p1:guid>
<d2p1:guid>ac2b65ac-4383-4bfd-be16-07aa93ffd978</d2p1:guid>
</Classification3>
<Classification4 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>2e208a1b-1609-4708-b8f8-c57d5f82530a</d2p1:guid>
<d2p1:guid>bfbaacc1-382d-4c26-9f9e-f19ed853fbd2</d2p1:guid>
</Classification4>
<Code>sample string 1</Code>
<IdentificationStatus>Both</IdentificationStatus>
<Identifications xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>cc05a0a2-e625-414f-a54e-f7e5eca2c3c8</d2p1:guid>
<d2p1:guid>b9099b3d-add9-4241-b6a2-6fc75ec132e7</d2p1:guid>
</Identifications>
<IdentificationsUse>Fleet</IdentificationsUse>
<Name>sample string 2</Name>
<Rules xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>146c4067-fe9f-49e6-bbc7-7e9e5dd1bdd3</d2p1:guid>
<d2p1:guid>209ccc82-852c-42fe-adab-419cab71a00a</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>