POST api/all/vehicleout

Request Information

URI Parameters

None.

Body Parameters

VehicleOutI
NameDescriptionTypeAdditional information
CustomerCode

string

None.

Username

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerCode": "sample string 1",
  "Username": "sample string 2",
  "Password": "sample string 3"
}

application/xml, text/xml

Sample:
<VehicleOutI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
  <Password xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 3</Password>
  <Username xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 2</Username>
  <CustomerCode>sample string 1</CustomerCode>
</VehicleOutI>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VehicleOutO
NameDescriptionTypeAdditional information
Data

Collection of VehicleOutEnt

None.

IsSuccess

boolean

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "MessageIdBAP": 1,
      "VehiclePlate": "sample string 2",
      "PrivateCode": "sample string 3",
      "XNCode": 4
    },
    {
      "MessageIdBAP": 1,
      "VehiclePlate": "sample string 2",
      "PrivateCode": "sample string 3",
      "XNCode": 4
    }
  ],
  "IsSuccess": true,
  "Description": "sample string 2"
}

application/xml, text/xml

Sample:
<VehicleOutO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
  <Description>sample string 2</Description>
  <IsSuccess>true</IsSuccess>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Entities.Common">
    <d2p1:VehicleOutEnt>
      <d2p1:PrivateCode>sample string 3</d2p1:PrivateCode>
      <d2p1:VehiclePlate>sample string 2</d2p1:VehiclePlate>
      <d2p1:XNCode>4</d2p1:XNCode>
      <d2p1:MessageIdBAP>1</d2p1:MessageIdBAP>
    </d2p1:VehicleOutEnt>
    <d2p1:VehicleOutEnt>
      <d2p1:PrivateCode>sample string 3</d2p1:PrivateCode>
      <d2p1:VehiclePlate>sample string 2</d2p1:VehiclePlate>
      <d2p1:XNCode>4</d2p1:XNCode>
      <d2p1:MessageIdBAP>1</d2p1:MessageIdBAP>
    </d2p1:VehicleOutEnt>
  </Data>
</VehicleOutO>