Single pickup, multi drop off

Hi @slavo,

As of today we don’t have the multi-pickups feature available so you can only use one pickup and multi-dropoff points. That’s why the best way to achieve multi-drop in your example is the following:

job: {
  pickups: [
    { address: "LocationA", comment: "Comment about all the package picked at LocationA", contact: "Main Contact" },
  ],
  dropoffs: [
    { address: "LocationB", client_reference: "P1", comment: "Contains Hot Food", contact: "Ashley" },
    { address: "LocationB", client_reference: "P2", comment: "Do Not Rotate", contact: "Bob" },
    { address: "LocationC", client_reference: "P3", comment: "Fragile", contact: "Jessica" }
  ]
}