Order To Shipment

Creazione spedizione da un ordine

Questo endpoint viene usato per evadere ordini scaricati da Gsped da marketplace o ecommerce mediante i propri connettori.

La chiamata a questo endpoint genera la spedizione usando come destinatario l'indirizzo di spedizione dell'ordine.

Creazione spedizione da un Ordine

POST https://api.gsped.it/[ISTANZA]/OrderToShipment

Crea una spedizione da un ordine per ottenere evasione ed aggiornamento su piattaforma ecommerce/marketplace

Headers

NameTypeDescription

x-api-key*

String

APIKEY fornita da Gsped

Request Body

NameTypeDescription

client_id*

Int

Client ID Gsped

platform

String

Nome piattaforma origine ordine

packages*

Int

Numero dei colli

order_ref*

Riferimento ordine

weight*

Float

Peso dell'ordine

{
  "status": "OK",
  "order_ref": "FC3926207",
  "label_jpg": [
    "base64 label string"
  ],
  "label_pdf": [
    "base64 label string"
  ],
  "label_zpl": [
    "ZPL label string"
  ]
}

Snippets codice di esempio

<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.gsped.it/sandbox/OrderToShipment",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "{\n\t\"client_id\": 1,\n\t\"order_ref\": \"14326\",\n\t\"packages\": 2,\n\t\"platform\": \"woocommerce\",\n\t\"weight\": 7.09\n}",
  CURLOPT_HTTPHEADER => [
    "Content-Type: application/json",
    "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