POST api/v2/FleetMaintenance/operation
Création d'une opération
Request Information
URI Parameters
None.
Body Parameters
OperationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
id interne ( dtoId ) |
globally unique identifier |
None. |
| OperationId |
Identifiant autoincrémenté de l'opération |
integer |
None. |
| Name |
Libellé de l'opération (ex : Remplacement batterie, entretien annuel, etc...) |
string |
Required String length: inclusive between 0 and 100 |
| ErisId |
Identifiant de l'opération dans le système ErisMotors |
string |
String length: inclusive between 0 and 6 |
| Type |
Type d'opération |
OperationType |
None. |
| CustomerId |
Identifiant du client |
globally unique identifier |
None. |
| CustomerName |
Nom du client |
string |
None. |
| DistributorId |
Identifiant du distributor |
globally unique identifier |
None. |
| DistributorName | string |
None. |
|
| OwnerName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "ff11f171-2c6e-46b1-860c-787a1227afde",
"OperationId": 1,
"Name": "sample string 2",
"ErisId": "sample string 3",
"Type": 0,
"CustomerId": "3cf33bb0-2658-4cac-a55c-987a73e78e05",
"CustomerName": "sample string 4",
"DistributorId": "61c49374-46e4-4c79-b417-c88a0b2716ca",
"DistributorName": "sample string 5",
"OwnerName": "sample string 4"
}
application/xml, text/xml
Sample:
<OperationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto.FleetMaintenance"> <CustomerId>3cf33bb0-2658-4cac-a55c-987a73e78e05</CustomerId> <CustomerName>sample string 4</CustomerName> <DistributorId>61c49374-46e4-4c79-b417-c88a0b2716ca</DistributorId> <DistributorName>sample string 5</DistributorName> <ErisId>sample string 3</ErisId> <Id>ff11f171-2c6e-46b1-860c-787a1227afde</Id> <Name>sample string 2</Name> <OperationId>1</OperationId> <Type>Curative</Type> </OperationDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDto| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid |
Valdie ? |
boolean |
None. |
| Errors |
liste d'erreurs |
Collection of string |
None. |
| Data |
Objet à retourner |
Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"Errors": [
"sample string 1",
"sample string 2"
],
"Data": {}
}
application/xml, text/xml
Sample:
<ResponseDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto">
<Data />
<Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Errors>
<IsValid>true</IsValid>
</ResponseDto>