Spedizione

Trasmette una o piu spedizioni al corriere

POST
/api/v1/external/shipment/transmit
x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://service.e-manager.io/api/v1/external/shipment/transmit" \  -H "Content-Type: application/json" \  -d '[    {      "orderId": 0    }  ]'
{
  "success": true,
  "message": "string",
  "total": 0,
  "details": {
    "success": [
      0
    ],
    "errors": [
      {
        "id": 0,
        "message": "string"
      }
    ]
  }
}

Last updated on