GET api/{siteCode}/POD/GetPOD?jobNumber={jobNumber}
Gets the pod record for a specified job.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
siteCode |
The site code. |
integer |
Required |
jobNumber |
The job number. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
PODRecord.
PODRecordName | Description | Type | Additional information |
---|---|---|---|
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:
{ "DocumentID": 5081, "JobNumber": "HD6832", "SignatureName": "A Recipient", "DeliveredDate": "2025-02-04T00:00:00+00:00", "DeliveredTime": "2025-02-04T23:06:22.8890533+00:00", "Comments": "Any delivery comments would be entered here." }
application/xml, text/xml
Sample:
<PODRecord xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <DocumentID>5081</DocumentID> <JobNumber>HD6832</JobNumber> <SignatureName>A Recipient</SignatureName> <DeliveredDate>2025-02-04T00:00:00+00:00</DeliveredDate> <DeliveredTime>2025-02-04T23:06:22.8890533+00:00</DeliveredTime> <Comments>Any delivery comments would be entered here.</Comments> </PODRecord>