POST VehiclesUpdateTemplateDownloadOrder
Processes a POST request to generate a bulk vehicle update from a template.
Request Information
URI Parameters
None.
Body Parameters
Object containing vehicle search criteria (filters, classifications, etc.).
VehicleSearchRequestDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Fleet | Collection of globally unique identifier |
None. |
|
| Identification | Collection of globally unique identifier |
None. |
|
| Rule | 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. |
|
| Code | string |
None. |
|
| Plate | string |
None. |
|
| CreationDateFrom | string |
None. |
|
| CreationDateTo | string |
None. |
|
| Active | boolean |
None. |
|
| HasGPS | boolean |
None. |
|
| IdentificationsUse | IdentificationsUseEnum |
None. |
|
| IdentificationStatus | IdentificationStatusFilterEnum |
None. |
|
| State | VehicleStateEnum |
None. |
|
| SearchText | string |
None. |
|
| EntityId | string |
None. |
|
| IdNetwork | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Fleet": [
"dfe36d39-da2f-42de-9188-a486c92659c1",
"d48e99bd-d96e-49c8-9b48-3853dbd3dcbf"
],
"Identification": [
"b20d44e5-de4d-45c4-94cd-9cb84a4d6959",
"383d4fee-1d6e-494f-adfb-0a81bac2d77a"
],
"Rule": [
"309a8227-2af0-4feb-aec0-e8ab8c9b0400",
"9f5e94d8-52fd-416c-b476-adf2db5e598b"
],
"Classification1": [
"ebc963ab-0e86-4fce-9643-7f41ddc3a4a6",
"bed89ad2-def5-4f55-bc07-de17548b9049"
],
"Classification2": [
"84dbb3b7-e2c8-4535-ad4b-a84de238f8a9",
"211ff381-bdbd-4b5f-a8ae-c362bac4afdc"
],
"Classification3": [
"3bfb3708-5ba1-43ed-97a7-6aae621f8f95",
"45a16426-8a8a-4459-b433-f619977e40be"
],
"Classification4": [
"314a4d93-e619-43ad-9bd4-ac35fae6d42b",
"044b6ad8-5746-400c-ab29-7691c7850680"
],
"Code": "sample string 1",
"Plate": "sample string 2",
"CreationDateFrom": "sample string 3",
"CreationDateTo": "sample string 4",
"Active": true,
"HasGPS": true,
"IdentificationsUse": 0,
"IdentificationStatus": 0,
"State": 0,
"SearchText": "sample string 6",
"EntityId": "sample string 7",
"IdNetwork": "sample string 8"
}
application/xml, text/xml
Sample:
<VehicleSearchRequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model.Vehicle">
<Active>true</Active>
<Classification1 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>ebc963ab-0e86-4fce-9643-7f41ddc3a4a6</d2p1:guid>
<d2p1:guid>bed89ad2-def5-4f55-bc07-de17548b9049</d2p1:guid>
</Classification1>
<Classification2 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>84dbb3b7-e2c8-4535-ad4b-a84de238f8a9</d2p1:guid>
<d2p1:guid>211ff381-bdbd-4b5f-a8ae-c362bac4afdc</d2p1:guid>
</Classification2>
<Classification3 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>3bfb3708-5ba1-43ed-97a7-6aae621f8f95</d2p1:guid>
<d2p1:guid>45a16426-8a8a-4459-b433-f619977e40be</d2p1:guid>
</Classification3>
<Classification4 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>314a4d93-e619-43ad-9bd4-ac35fae6d42b</d2p1:guid>
<d2p1:guid>044b6ad8-5746-400c-ab29-7691c7850680</d2p1:guid>
</Classification4>
<Code>sample string 1</Code>
<CreationDateFrom>sample string 3</CreationDateFrom>
<CreationDateTo>sample string 4</CreationDateTo>
<EntityId>sample string 7</EntityId>
<Fleet xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>dfe36d39-da2f-42de-9188-a486c92659c1</d2p1:guid>
<d2p1:guid>d48e99bd-d96e-49c8-9b48-3853dbd3dcbf</d2p1:guid>
</Fleet>
<HasGPS>true</HasGPS>
<IdNetwork>sample string 8</IdNetwork>
<Identification xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>b20d44e5-de4d-45c4-94cd-9cb84a4d6959</d2p1:guid>
<d2p1:guid>383d4fee-1d6e-494f-adfb-0a81bac2d77a</d2p1:guid>
</Identification>
<IdentificationStatus>Both</IdentificationStatus>
<IdentificationsUse>Fleet</IdentificationsUse>
<Plate>sample string 2</Plate>
<Rule xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>309a8227-2af0-4feb-aec0-e8ab8c9b0400</d2p1:guid>
<d2p1:guid>9f5e94d8-52fd-416c-b476-adf2db5e598b</d2p1:guid>
</Rule>
<SearchText>sample string 6</SearchText>
<State>Operational</State>
</VehicleSearchRequestDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A JSON result indicating whether the operation was accepted and that the user will receive an email notification with the outcome.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.