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": [
"b5505482-e50e-40af-a168-2fab2820a08b",
"e6610c98-7ad3-446c-bb4a-0fe43a4c2c12"
],
"Identification": [
"a0db8729-2e9f-40f9-8665-1032db0e4589",
"2a5a76c7-06fb-4eb4-a459-7d540e5cbe78"
],
"Rule": [
"cf7460f4-c09c-4816-9e4e-6d0b6f053550",
"b3a2ec6c-5bb1-4798-8d49-35ded38c5406"
],
"Classification1": [
"3f57d31b-6b18-4e8d-9b1b-5615a1f96b50",
"c724dd68-7373-4da2-b232-03716df0d6f9"
],
"Classification2": [
"953047a1-d708-40d4-a89c-9d3e58b587fa",
"f0afbaf2-4ef7-4be1-b171-381a2941308a"
],
"Classification3": [
"3a204733-d9e1-49fc-9ef7-65b43154ca0b",
"073b1ff5-2761-49db-97e6-7309b16031ea"
],
"Classification4": [
"47bb6f16-f579-4c67-a05d-8e44d9596b19",
"4a3ebed1-6545-4f3f-a8ff-be636559c0ca"
],
"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>3f57d31b-6b18-4e8d-9b1b-5615a1f96b50</d2p1:guid>
<d2p1:guid>c724dd68-7373-4da2-b232-03716df0d6f9</d2p1:guid>
</Classification1>
<Classification2 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>953047a1-d708-40d4-a89c-9d3e58b587fa</d2p1:guid>
<d2p1:guid>f0afbaf2-4ef7-4be1-b171-381a2941308a</d2p1:guid>
</Classification2>
<Classification3 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>3a204733-d9e1-49fc-9ef7-65b43154ca0b</d2p1:guid>
<d2p1:guid>073b1ff5-2761-49db-97e6-7309b16031ea</d2p1:guid>
</Classification3>
<Classification4 xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>47bb6f16-f579-4c67-a05d-8e44d9596b19</d2p1:guid>
<d2p1:guid>4a3ebed1-6545-4f3f-a8ff-be636559c0ca</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>b5505482-e50e-40af-a168-2fab2820a08b</d2p1:guid>
<d2p1:guid>e6610c98-7ad3-446c-bb4a-0fe43a4c2c12</d2p1:guid>
</Fleet>
<HasGPS>true</HasGPS>
<IdNetwork>sample string 8</IdNetwork>
<Identification xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>a0db8729-2e9f-40f9-8665-1032db0e4589</d2p1:guid>
<d2p1:guid>2a5a76c7-06fb-4eb4-a459-7d540e5cbe78</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>cf7460f4-c09c-4816-9e4e-6d0b6f053550</d2p1:guid>
<d2p1:guid>b3a2ec6c-5bb1-4798-8d49-35ded38c5406</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.