GET api/Customer/{id}/ActiveItems/Partner/{partnerID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| partnerID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of dtoItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | integer |
None. |
|
| TypeID | integer |
None. |
|
| SerialNo | string |
None. |
|
| Manufacturer | string |
None. |
|
| Model | string |
None. |
|
| Colour | string |
None. |
|
| ModelYear | integer |
None. |
|
| LastService | date |
None. |
|
| StatusID | integer |
None. |
|
| BikeSize | string |
None. |
|
| PartnerType | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"UserID": 2,
"TypeID": 3,
"SerialNo": "sample string 4",
"Manufacturer": "sample string 5",
"Model": "sample string 6",
"Colour": "sample string 7",
"ModelYear": 1,
"LastService": "2026-03-21T11:24:12.6136762+00:00",
"StatusID": 8,
"BikeSize": "sample string 9",
"PartnerType": 10
},
{
"ID": 1,
"UserID": 2,
"TypeID": 3,
"SerialNo": "sample string 4",
"Manufacturer": "sample string 5",
"Model": "sample string 6",
"Colour": "sample string 7",
"ModelYear": 1,
"LastService": "2026-03-21T11:24:12.6136762+00:00",
"StatusID": 8,
"BikeSize": "sample string 9",
"PartnerType": 10
}
]
application/xml, text/xml
Sample:
<ArrayOfdtoItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Hub.Server.Entities.Items">
<dtoItem>
<BikeSize>sample string 9</BikeSize>
<Colour>sample string 7</Colour>
<ID>1</ID>
<LastService>2026-03-21T11:24:12.6136762+00:00</LastService>
<Manufacturer>sample string 5</Manufacturer>
<Model>sample string 6</Model>
<ModelYear>1</ModelYear>
<PartnerType>10</PartnerType>
<SerialNo>sample string 4</SerialNo>
<StatusID>8</StatusID>
<TypeID>3</TypeID>
<UserID>2</UserID>
</dtoItem>
<dtoItem>
<BikeSize>sample string 9</BikeSize>
<Colour>sample string 7</Colour>
<ID>1</ID>
<LastService>2026-03-21T11:24:12.6136762+00:00</LastService>
<Manufacturer>sample string 5</Manufacturer>
<Model>sample string 6</Model>
<ModelYear>1</ModelYear>
<PartnerType>10</PartnerType>
<SerialNo>sample string 4</SerialNo>
<StatusID>8</StatusID>
<TypeID>3</TypeID>
<UserID>2</UserID>
</dtoItem>
</ArrayOfdtoItem>