POD (proof of delivery)

Proof-Of-Delivery Download

This endpoint allows to download the POD in PDF/JPG for the couriers enabled to this service.

Download POD

GET https://api.gsped.it/[INSTANCE]/POD/[ID_GSPED]

Download PDF/JPG image of the POD

Path Parameters

Headers

{
    "pod": "base64 encoded POD string"
    "file_type": "application/pdf"
}

Example Snippets

<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.gsped.it/sandbox/POD?id=1234",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_POSTFIELDS => "",
  CURLOPT_HTTPHEADER => [
    "x-api-key: YOUR-API-KEY"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}

Last updated