GET api/{siteCode}/Transport/GetPODSignature/{id}
Gets the pod signature.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteCode |
The site code. |
integer |
Required |
| id |
The identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PODRecordSignature| Name | Description | Type | Additional information |
|---|---|---|---|
| SignatureImage | Collection of byte |
None. |
|
| DocumentID | integer |
None. |
|
| JobNumber | string |
None. |
|
| SignatureName | string |
None. |
|
| DeliveredDate | date |
None. |
|
| DeliveredTime | date |
None. |
|
| Comments | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"SignatureImage": "QEA=",
"DocumentID": 1,
"JobNumber": "sample string 2",
"SignatureName": "sample string 3",
"DeliveredDate": "2025-12-07T07:05:06.8819137+00:00",
"DeliveredTime": "2025-12-07T07:05:06.8819137+00:00",
"Comments": "sample string 4"
}
application/xml, text/xml
Sample:
<PODRecordSignature xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <DocumentID>1</DocumentID> <JobNumber>sample string 2</JobNumber> <SignatureName>sample string 3</SignatureName> <DeliveredDate>2025-12-07T07:05:06.8819137+00:00</DeliveredDate> <DeliveredTime>2025-12-07T07:05:06.8819137+00:00</DeliveredTime> <Comments>sample string 4</Comments> <SignatureImage>QEA=</SignatureImage> </PODRecordSignature>