GET api/Collection/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
CollectionData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| StopId | globally unique identifier |
Required |
|
| CollectionTypeId | globally unique identifier |
Required |
|
| Notation | string |
None. |
|
| AdjNote | string |
None. |
|
| Amount | decimal number |
Required |
|
| AdjAmount | decimal number |
None. |
|
| Identifier | string |
None. |
|
| Updated | date |
None. |
|
| IsDeleted | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "cde293cf-174d-4a80-9c5a-763adf5df627",
"StopId": "b6a9a293-febe-43ce-bc23-26a59a886a10",
"CollectionTypeId": "c5a30515-ab92-48c1-9e88-5cd08546f2a9",
"Notation": "sample string 3",
"AdjNote": "sample string 4",
"Amount": 5.0,
"AdjAmount": 1.0,
"Identifier": "sample string 6",
"Updated": "2025-12-15T23:39:18.0737026-05:00",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<CollectionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <AdjAmount>1</AdjAmount> <AdjNote>sample string 4</AdjNote> <Amount>5</Amount> <CollectionTypeId>c5a30515-ab92-48c1-9e88-5cd08546f2a9</CollectionTypeId> <Id>cde293cf-174d-4a80-9c5a-763adf5df627</Id> <Identifier>sample string 6</Identifier> <IsDeleted>1</IsDeleted> <Notation>sample string 3</Notation> <StopId>b6a9a293-febe-43ce-bc23-26a59a886a10</StopId> <Updated>2025-12-15T23:39:18.0737026-05:00</Updated> </CollectionData>