POST api/v2/FleetMaintenance/operation
Création d'une opération
Request Information
URI Parameters
None.
Body Parameters
OperationDtoName | 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": "c73d529c-e62b-4876-b85b-aeac2ff7374a", "OperationId": 1, "Name": "sample string 2", "ErisId": "sample string 3", "Type": 0, "CustomerId": "2db2ab53-4f66-4d34-bb8b-9c764fcd87e5", "CustomerName": "sample string 4", "DistributorId": "7895b4c1-0ddd-41dd-98be-b1824b24dc9a", "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>2db2ab53-4f66-4d34-bb8b-9c764fcd87e5</CustomerId> <CustomerName>sample string 4</CustomerName> <DistributorId>7895b4c1-0ddd-41dd-98be-b1824b24dc9a</DistributorId> <DistributorName>sample string 5</DistributorName> <ErisId>sample string 3</ErisId> <Id>c73d529c-e62b-4876-b85b-aeac2ff7374a</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
ResponseDtoName | 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>