Delivery Requests
Create delivery 📦
Introduction
SDK Documentation
- Dora SDK
REST API Documentation
- Authorization
- Manage stores
- Delivery Requests
- Manage couriers
- Get Delivery Estimates
- Metas
Delivery Requests
Create delivery 📦
This endpoint creates customer order fulfilment request.
Endpoint POST
Request Body Parameters
delivery_provider_uuid
string
requiredThe provider selected provider uuid that was selected after generating delivery estimate.
store_uuid
string
requiredThe store uuid where the delivery will be saved
sender_address
string
requiredThe pickup location of the sender or business
sender_send_email_thirty_minutes_after_processing_order
integer
boolean 1 or 0
sender_include_return_portal_in_tracking_mail
integer
boolean 1 or 0
customer_name
string
requiredThe name of your customer
customer_email
string
(Optional) the email of your customer
customer_state_id
integer
requiredThe state id (can be gotten from the state metas) endpoint
customer_phone_number
integer
requiredThe phone number of the customer
phone_code
integer
requiredThe country phone code of the customer phone number. Can be gotten from country metas) endpoint
customer_address
string
requiredThe destination address of the customer
delivery_total_order_value
numeric
requiredCummulative value of the order
delivery_number_of_parcels
integer
requiredThe number of parcel for the order
delivery_unit_weight
numeric
requiredAverage weight of each item in the parcel in (kg)
items
object
requireditem_description
string
requiredItem name or description
item_quantity
integer
requiredQuantity of item
item_weight
numeric
requiredUnit weight of the item
item_value
numeric
requiredValue of item
Sample Request
{
"sender_address": "10 John Street, Ipaja, Lagos",
"customer_name": "TundeNasri",
"customer_email": "sinoma@example.com",
"customer_state_id": 4,
"customer_house_number": 4,
"customer_phone_number": "0802839***8",
"phone_code": 234,
"customer_address": "12 Ahmadu Bello way, Central Business District, Abuja",
"delivery_total_order_value": 10000,
"delivery_number_of_parcels": 1,
"delivery_unit_weight": 10,
"items": {
[
"item_description": "Freshfish",
"item_quantity": 1,
"item_weight": 10,
"item_value": 10000
]
}
}
On this page