GET api/v2/FleetMaintenance/operation

Retourne la la liste des opérations

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of OperationDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

OperationId

integer

None.

Name

string

Required

String length: inclusive between 0 and 100

ErisId

string

String length: inclusive between 0 and 6

Type

OperationType

None.

CustomerId

globally unique identifier

None.

CustomerName

string

None.

DistributorId

globally unique identifier

None.

DistributorName

string

None.

OwnerName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "f29c85c7-6c35-4b2e-97fc-a89be7018cb9",
    "OperationId": 1,
    "Name": "sample string 2",
    "ErisId": "sample string 3",
    "Type": 0,
    "CustomerId": "63a66735-ef67-406a-afa2-4d6394ace208",
    "CustomerName": "sample string 4",
    "DistributorId": "d371a52e-5fe6-4986-a73d-4364fdf56c43",
    "DistributorName": "sample string 5",
    "OwnerName": "sample string 4"
  },
  {
    "Id": "f29c85c7-6c35-4b2e-97fc-a89be7018cb9",
    "OperationId": 1,
    "Name": "sample string 2",
    "ErisId": "sample string 3",
    "Type": 0,
    "CustomerId": "63a66735-ef67-406a-afa2-4d6394ace208",
    "CustomerName": "sample string 4",
    "DistributorId": "d371a52e-5fe6-4986-a73d-4364fdf56c43",
    "DistributorName": "sample string 5",
    "OwnerName": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOperationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto.FleetMaintenance">
  <OperationDto>
    <CustomerId>63a66735-ef67-406a-afa2-4d6394ace208</CustomerId>
    <CustomerName>sample string 4</CustomerName>
    <DistributorId>d371a52e-5fe6-4986-a73d-4364fdf56c43</DistributorId>
    <DistributorName>sample string 5</DistributorName>
    <ErisId>sample string 3</ErisId>
    <Id>f29c85c7-6c35-4b2e-97fc-a89be7018cb9</Id>
    <Name>sample string 2</Name>
    <OperationId>1</OperationId>
    <Type>Curative</Type>
  </OperationDto>
  <OperationDto>
    <CustomerId>63a66735-ef67-406a-afa2-4d6394ace208</CustomerId>
    <CustomerName>sample string 4</CustomerName>
    <DistributorId>d371a52e-5fe6-4986-a73d-4364fdf56c43</DistributorId>
    <DistributorName>sample string 5</DistributorName>
    <ErisId>sample string 3</ErisId>
    <Id>f29c85c7-6c35-4b2e-97fc-a89be7018cb9</Id>
    <Name>sample string 2</Name>
    <OperationId>1</OperationId>
    <Type>Curative</Type>
  </OperationDto>
</ArrayOfOperationDto>