POST api/Deliveries
Posts DeliveryScanDTO to the database, stores images in database
Request Information
URI Parameters
None.
Body Parameters
DeliveryScanDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Scan | string |
None. |
|
| Signature | string |
None. |
|
| Images | Collection of string |
None. |
|
| StatusCode | integer |
None. |
|
| DriverComments | string |
None. |
|
| DeviceID | globally unique identifier |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| DateTime | date |
None. |
|
| Status | string |
None. |
|
| IsSuccess | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Scan": "sample string 1",
"Signature": "sample string 2",
"Images": [
"sample string 1",
"sample string 2"
],
"StatusCode": 3,
"DriverComments": "sample string 4",
"DeviceID": "3cf82cc0-71a9-437f-ab2e-98eff6838854",
"Latitude": 6.1,
"Longitude": 7.1,
"DateTime": "2025-12-12T23:19:06.5607228-06:00",
"Status": "sample string 9",
"IsSuccess": true
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.