- 🐶 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
- 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
Create
POST
/delivery-attempt/
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
package
integer
required
package_status
string
required
attempt_number
string
required
delivery_attempt_date
string
required
day
string
required
time
string
required
parcel_collection_point
string
required
package_delivery_issue
array[integer]
required
reason
string
required
Example
{
"package": 1,
"package_status": "Loaded",
"attempt_number": "1",
"delivery_attempt_date": "15-09-2024",
"day": "Monday",
"time": "14:30",
"parcel_collection_point": "Local Post Office",
"package_delivery_issue": [2, 8],
"reason": "Customer not at home"
}
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 POST '/delivery-attempt/' \
--header 'Content-Type: application/json' \
--data-raw '{
"package": 1,
"package_status": "Loaded",
"attempt_number": "1",
"delivery_attempt_date": "15-09-2024",
"day": "Monday",
"time": "14:30",
"parcel_collection_point": "Local Post Office",
"package_delivery_issue": [2, 8],
"reason": "Customer not at home"
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-11-22 06:13:56