- 🐶 Walk through Apidog
- hey couriers
- Web
- Hey Courier
- Auth
- Group Permission
- Webhook Secret Key
- Profile Update
- Common
- Employee
- Package Model
- Assign Package To Driver
- Photo Upload in Assign Package
- Photo Upload Delete
- Failed Delivery Status
- ListGET
- CreatePOST
- RetrieveGET
- UpdatePATCH
- DeleteDELETE
- Route
- Delivery Rates
- Driver Delivery Rates
- Dashboard API
- Optimize Route List of Package
- Return Report
- Delivery Attempt
- Company
- Delivery Status Manage Model
- Warehouse
- Pickup Point
- Driver Lat-Long Manage
- Company Package Upload
- Package by Company Key
- Driver Support
- Pickup Package
- Wallet
- Pickup Route
- Pickup Package by Webhook
- Wallet Adjustment
- Invoice
- App
- Untitled EndpointGET
- Untitled EndpointGET
- Untitled EndpointPOST
Update
PATCH
/package-photo-upload/15/
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params multipart/form-data
form_data
string
required
Example:
{
"package": 28,
"delivery_start_date_time": "01-08-2024 14:00",
"delivery_end_date_time": "11-08-2024 17:30",
"package_delivery_status": [5,8,9,11,12],
"other_reasons": "Abcdefghijkl"
}
photo_upload_one
file
required
photo_upload_two
file
required
photo_upload_three
file
required
photo_upload_four
file
required
photo_upload_five
file
required
signature
file
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/package-photo-upload/15/' \
--form 'form_data="{
\"package\": 28,
\"delivery_start_date_time\": \"01-08-2024 14:00\",
\"delivery_end_date_time\": \"11-08-2024 17:30\",
\"package_delivery_status\": [5,8,9,11,12],
\"other_reasons\": \"Abcdefghijkl\"
}"' \
--form 'photo_upload_one=@""' \
--form 'photo_upload_two=@""' \
--form 'photo_upload_three=@""' \
--form 'photo_upload_four=@""' \
--form 'photo_upload_five=@""' \
--form 'signature=@""'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-11-22 06:13:56