Create Delivery
curl --request POST \
--url https://{subdomain}.unicyfalcon.com/api/v1/deliveriesimport requests
url = "https://{subdomain}.unicyfalcon.com/api/v1/deliveries"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://{subdomain}.unicyfalcon.com/api/v1/deliveries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{subdomain}.unicyfalcon.com/api/v1/deliveries",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{subdomain}.unicyfalcon.com/api/v1/deliveries"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{subdomain}.unicyfalcon.com/api/v1/deliveries")
.asString();require 'uri'
require 'net/http'
url = URI("https://{subdomain}.unicyfalcon.com/api/v1/deliveries")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyDeliveries
Create Delivery
Create a new delivery
POST
/
api
/
v1
/
deliveries
Create Delivery
curl --request POST \
--url https://{subdomain}.unicyfalcon.com/api/v1/deliveriesimport requests
url = "https://{subdomain}.unicyfalcon.com/api/v1/deliveries"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://{subdomain}.unicyfalcon.com/api/v1/deliveries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{subdomain}.unicyfalcon.com/api/v1/deliveries",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{subdomain}.unicyfalcon.com/api/v1/deliveries"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{subdomain}.unicyfalcon.com/api/v1/deliveries")
.asString();require 'uri'
require 'net/http'
url = URI("https://{subdomain}.unicyfalcon.com/api/v1/deliveries")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_bodyRequest Body
{
"order_id": 123,
"driver_id": 456,
"pickup_address_id": 789,
"dropoff_address_id": 101,
"status": "scheduled",
"tracking_number": "TRACK-2025-001",
"pickup_at": "2025-10-28T10:00:00Z",
"dropoff_at": "2025-10-28T14:00:00Z",
"notes": "string",
"delivery_cost": 25.00
}
Response
201 Created with the created delivery object.⌘I
