POST api/all/getlistxnplatebypartner
Request Information
URI Parameters
None.
Body Parameters
ListXnPlateByPartnerInput| Name | Description | Type | Additional information |
|---|---|---|---|
| System | string |
None. |
|
| PartnerID | integer |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"System": "sample string 1",
"PartnerID": 2,
"Username": "sample string 3",
"Password": "sample string 4"
}
application/xml, text/xml
Sample:
<ListXnPlateByPartnerInput 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 4</Password> <Username xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 3</Username> <PartnerID>2</PartnerID> <System>sample string 1</System> </ListXnPlateByPartnerInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ListXnPlateByPartnerResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of VehicleBaseEnt |
None. |
|
| ProcessErrorType | integer |
None. |
|
| ProcessErrorDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"VehiclePlate": "sample string 1",
"PrivateCode": "sample string 2",
"XNCode": 3
},
{
"VehiclePlate": "sample string 1",
"PrivateCode": "sample string 2",
"XNCode": 3
}
],
"ProcessErrorType": 1,
"ProcessErrorDescription": "sample string 2"
}
application/xml, text/xml
Sample:
<ListXnPlateByPartnerResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
<ProcessErrorDescription xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 2</ProcessErrorDescription>
<ProcessErrorType xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">1</ProcessErrorType>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d2p1:VehicleBaseEnt>
<d2p1:PrivateCode>sample string 2</d2p1:PrivateCode>
<d2p1:VehiclePlate>sample string 1</d2p1:VehiclePlate>
<d2p1:XNCode>3</d2p1:XNCode>
</d2p1:VehicleBaseEnt>
<d2p1:VehicleBaseEnt>
<d2p1:PrivateCode>sample string 2</d2p1:PrivateCode>
<d2p1:VehiclePlate>sample string 1</d2p1:VehiclePlate>
<d2p1:XNCode>3</d2p1:XNCode>
</d2p1:VehicleBaseEnt>
</Data>
</ListXnPlateByPartnerResult>