Confirm pickup.
curl --request POST \
--url https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"pickupDate": "2023-12-25",
"driverIdentification": "<string>"
}
'import requests
url = "https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup"
payload = {
"pickupDate": "2023-12-25",
"driverIdentification": "<string>"
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({pickupDate: '2023-12-25', driverIdentification: '<string>'})
};
fetch('https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup', 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://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pickupDate' => '2023-12-25',
'driverIdentification' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup"
payload := strings.NewReader("{\n \"pickupDate\": \"2023-12-25\",\n \"driverIdentification\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"pickupDate\": \"2023-12-25\",\n \"driverIdentification\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"pickupDate\": \"2023-12-25\",\n \"driverIdentification\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "NOT_STARTED",
"pickupConfirmed": true,
"pickupDate": "2023-12-25",
"deliveryConfirmed": true,
"deliveryDate": "2023-12-25",
"cmrUploaded": true,
"dailyViesChecksActive": true,
"vins": [
{
"vin": "<string>",
"pickupConfirmed": true,
"deliveryConfirmed": true
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"traceId": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"traceId": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"traceId": "<string>"
}Transport
Confirm pickup.
Immutable-once-set. Retry with same body returns 409 with current state.
Use /pickup/revoke to explicitly reverse.
POST
/
partners
/
{sellerId}
/
orders
/
{uuid}
/
transport
/
pickup
Confirm pickup.
curl --request POST \
--url https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"pickupDate": "2023-12-25",
"driverIdentification": "<string>"
}
'import requests
url = "https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup"
payload = {
"pickupDate": "2023-12-25",
"driverIdentification": "<string>"
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({pickupDate: '2023-12-25', driverIdentification: '<string>'})
};
fetch('https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup', 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://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pickupDate' => '2023-12-25',
'driverIdentification' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup"
payload := strings.NewReader("{\n \"pickupDate\": \"2023-12-25\",\n \"driverIdentification\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"pickupDate\": \"2023-12-25\",\n \"driverIdentification\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.novatrade24.com/v1/partners/{sellerId}/orders/{uuid}/transport/pickup")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"pickupDate\": \"2023-12-25\",\n \"driverIdentification\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "NOT_STARTED",
"pickupConfirmed": true,
"pickupDate": "2023-12-25",
"deliveryConfirmed": true,
"deliveryDate": "2023-12-25",
"cmrUploaded": true,
"dailyViesChecksActive": true,
"vins": [
{
"vin": "<string>",
"pickupConfirmed": true,
"deliveryConfirmed": true
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"traceId": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"traceId": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"traceId": "<string>"
}Authorizations
OAuth 2.0 client_credentials grant via Keycloak service account.
Clients are provisioned per IntegrationOrganization in the
nt24-idp realm.
Headers
Client-generated unique key (UUID recommended) for this write operation.
Identical key + identical body within 24h returns the cached response.
Identical key + different body returns 422.
Required string length:
1 - 255Path Parameters
UUID of the seller trade partner (must be in caller's authorized list).
Body
application/json
Response
Pickup confirmed.
⌘I