-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathAPI_CHANGELOG.html
766 lines (712 loc) · 25.4 KB
/
API_CHANGELOG.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
---
layout: default
title: shipcloud api changelog
---
<h1 id="change-log" class="mb-l">Change log</h1>
<p class="mb-m">
All notable changes to our api will be documented in this file. This way you can easily find out
about all changes we made in the past and see if there's anything new you have to consider since
you've last visited the api documentation.
</p>
<p class="mb-m">
This changelog does not follow <a href="https://semver.org/" target="_blank">
Semantic Versioning</a>, since we currently do not work with any other release modifiers than
major versions.
</p>
<div class="bg-grey-light border-t-4 border-grey-darker text-grey-darker rounded-b px-4 py-3 shadow-md my-2 mb-l" role="alert">
<div class="flex">
<div>
<i class="fas fa-info-circle h-6 w-6 mr-4"></i>
</div>
<div>
<strong>Notice</strong>: Not everything we do affects the viewable parts of our api.
</div>
</div>
</div>
<section class="mb-l">
<h2 id="20220607---2022-06-07" class="mb-s">[20220607] - 2022-06-07</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Attribute <code>refundable_until</code> to orders, which will be used by the
<a href="{{ site.baseurl }}/examples/#return-portal-plus">return portal plus</a> to determine
if the order can be "opened" for creating return shipping labels.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20220517---2022-05-17" class="mb-s">[20220517] - 2022-05-17</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
API Endpoint <code>/orders</code> with the options to:
<ul class="list-outside list-disc ml-m">
<li>
create an order (<a href="{{ site.baseurl }}/reference/#create-an-order">API reference</a> | <a href="{{ site.baseurl }}/swagger-ui/#/default/post_orders" data-proofer-ignore>OpenAPI Spec</a>)
</li>
<li>
get a list of created orders (<a href="{{ site.baseurl }}/reference/#getting-a-list-of-orders">API reference</a> | <a href="{{ site.baseurl }}/swagger-ui/#/default/get_orders" data-proofer-ignore>OpenAPI Spec</a>)
</li>
<li>
read a previously created order (<a href="{{ site.baseurl }}/reference/#getting-information-about-an-order">API reference</a> | <a href="{{ site.baseurl }}/swagger-ui/#/default/get_orders__id_" data-proofer-ignore>OpenAPI Spec</a>)
</li>
</ul>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20220426---2022-04-26" class="mb-s">[20220426] - 2022-04-26</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
For DHL tracking events we can now return
<a href="{{ site.baseurl }}/carriers/dhl.html#v3---additional-delivery-details">additional delivery details</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20220322---2022-03-22" class="mb-s">[20220322] - 2022-03-22</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Webhooks can now be secured using
<a href="{{ site.baseurl }}/concepts/#webhook-security">basic auth</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20220125---2022-01-25" class="mb-s">[20220125] - 2022-01-25</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Service
<a href="{{ site.baseurl }}/carriers/parcel_one.html#shipping-wcf-api---returns">
returns</a> for PARCEL.ONE
</li>
<li>
Carrier <a href="{{ site.baseurl }}/carriers/asendia.html">Asendia</a>
</li>
<li>
API Endpoint <code>/manifests</code> with the options to:
<ul class="list-outside list-disc ml-m">
<li>
<a href="{{ site.baseurl }}/swagger-ui/#/default/post_manifest" data-proofer-ignore>create a manifest</a>
</li>
<li>
<a href="{{ site.baseurl }}/swagger-ui/#/default/get_manifests__id_" data-proofer-ignore>
read a previously created manifest</a>
</li>
</ul>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20211202---2021-12-02" class="mb-s">[20211202] - 2021-12-02</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
<a href="{{ site.baseurl }}/carriers/ups.html#ship-webservice---billing-options">
Billing options</a> for UPS
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20210922---2021-09-22" class="mb-s">[20210922] - 2021-09-22</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service
<a href="{{ site.baseurl }}/carriers/hermes.html#hsi---cash-on-delivery">
cash on delivery</a> for Hermes
</li>
<li>
In addition to the normal
<a href="{{ site.baseurl }}/carriers/dhl.html#v3---general-information">handling of
addresses</a> you can now provide a
<a href="{{ site.baseurl }}/carriers/dhl.html#v3---packstation">Packstation</a> or
<a href="{{ site.baseurl }}/carriers/dhl.html#v3---postfiliale">Postfiliale</a> address by
sending us the keyword (<code>packstation</code> or <code>postfiliale</code>) and the
corresponding number in the <code>street</code> attribute, while using the DHL webservice.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20210728---2021-07-28" class="mb-s">[20210728] - 2021-07-28</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service
<a href="{{ site.baseurl }}/carriers/dpd.html#shipment-service-4-3---hazardous-goods">
Hazardous goods</a> for DPD
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20210519---2021-05-19" class="mb-s">[20210519] - 2021-05-19</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional services for DHL:
<ul class="list-outside list-disc ml-m">
<li>
<a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-no-neighbor-delivery">
No neighbor delivery</a>
</li>
<li>
<a href="{{ site.baseurl }}/carriers/dhl.html#v3---drop-authorization">
Preferred location</a>
</li>
<li>
<a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-preferred-neighbor">
Preferred neighbor</a>
</li>
</ul>
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/gls.html#web-api---drop-authorization">
DepositService</a> for GLS (including the
<a href="{{ site.baseurl }}/carriers/gls.html#web-api---letterboxservice">
LetterboxService</a>)
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/ups.html#ship-webservice---ups-carbon-neutral">
Carbon neutral</a> for UPS
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20210317---2021-03-17" class="mb-s">[20210317] - 2021-03-17</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service <a href="{{ site.baseurl }}/carriers/ups.html#ship-webservice---ups-signature-required">
Signature required</a> for UPS
</li>
<li>
You can now create
<a href="{{ site.baseurl }}/carriers/dhl.html#v3---qr-code-returns">
QR code return shipments for DHL</a>.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20210310---2021-03-10" class="mb-s">[20210310] - 2021-03-10</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
<a href="{{ site.baseurl }}/carriers/ups.html#ship-webservice---access-point-delivery">
Access point delivery</a> for UPS
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20210217---2021-02-17" class="mb-s">[20210217] - 2021-02-17</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Service <a href="{{ site.baseurl }}/carriers/dhl_express.html#rate-book---economy-select">
economy select</a> for DHL Express
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20210101---2021-01-01" class="mb-s">[20210101] - 2021-01-01</h2>
<h3>Removed</h3>
<ul class="list-outside list-disc ml-m">
<li>
The service
<a href="{{ site.baseurl }}/carriers/dpag.html#v3---dpag-warenpost">
Warenpost (domestic)
</a> has been deprecated by the Deutsche Post.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20201209---2020-12-09" class="mb-s">[20201209] - 2020-12-09</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
The additional service <a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-endorsement">Endorsement</a> can
now handle the handling type <code>return_immediately</code>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20201111---2020-11-11" class="mb-s">[20201111] - 2020-11-11</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
The <a href="{{ site.baseurl }}/reference/#get-all-carriers-available-for-your-account">
carriers endpoint</a> now returns the available and supported
<a href="{{ site.baseurl }}/concepts/#label-format">label formats</a> for each carrier
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200922---2020-09-22" class="mb-s">[20200922] - 2020-09-22</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Service <a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-prio">DHL Prio</a>
</li>
<li>
Service <a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-warenpost">DHL Warenpost</a>
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-endorsement">Endorsement</a>
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-named-person-only">Named person only</a>
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-parcel-outlet-routing">Parcel outlet routing</a>
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/dhl.html#v3---delivery-date">Preferred day</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200902---2020-09-02" class="mb-s">[20200902] - 2020-09-02</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
The carrier Angel now supports the <a href="{{ site.baseurl }}/carriers/angel_de.html#v1-label-formats">ZPL label format</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200708---2020-07-08" class="mb-s">[20200708] - 2020-07-08</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service
<a href="{{ site.baseurl }}/carriers/ups.html#ship-webservice---ups-direct-delivery-only">
UPS - Direct delivery only</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200527---2020-05-27" class="mb-s">[20200527] - 2020-05-27</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
You can subscribe to the new webhook
<a href="{{ site.baseurl }}/concepts/#event-type-shipment-delete">
event type for a deleted shipment
</a> using the code <code>shipment.status.deleted</code>.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200501---2020-05-01" class="mb-s">[20200501] - 2020-05-01</h2>
<h3>Removed</h3>
<ul class="list-outside list-disc ml-m">
<li>
The additional service Delivery Time (Preferred Time) is deprecated for DHL, because the
carrier discontinued it.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200429---2020-04-29" class="mb-s">[20200429] - 2020-04-29</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
The <a href="{{ site.baseurl }}/reference/#me">/me-endpoint</a> now returns an entry called
<code>environment</code> that will inform, wether the api key used is a sandbox or live key.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200318---2019-03-18" class="mb-s">[20200318] - 2020-03-18</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Endpoint
<a href="{{ site.baseurl }}/reference/#default-returns-address">/default_returns_address</a>
</li>
<li>
Endpoint
<a href="{{ site.baseurl }}/reference/#default-shipping-address">/default_shipping_address</a>
</li>
<li>
Endpoint <a href="{{ site.baseurl }}/reference/#invoice-address">/invoice_address</a>
</li>
<li>
The <a href="{{ site.baseurl }}/reference/#carriers">carriers endpoint</a> now also returns
the additional services that are available for the user.
</li>
</ul>
<h3>Changed</h3>
<ul class="list-outside list-disc ml-m">
<li>
When you are
<a href="{{ site.baseurl }}/reference/#get-all-carriers-available-for-your-account">getting
all carriers available for your account</a>, the attributes <code>services</code>,
<code>package_types</code> and <code>additional_services</code> will only return the entries
that are available for this account.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200228---2019-02-28" class="mb-s">[20200228] - 2020-02-28</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Endpoint <a href="{{ site.baseurl }}/reference/#me">/me</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200219---2019-02-19" class="mb-s">[20200219] - 2020-02-19</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service <a href="{{ site.baseurl }}/carriers/go.html#webservice---delivery-note">GO - Delivery Note</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200218---2019-02-18" class="mb-s">[20200218] - 2020-02-18</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Service
<a href="{{ site.baseurl }}/carriers/gls#web-api---gls-express-0800">
GLS - Express 08:00</a>
</li>
<li>
Service
<a href="{{ site.baseurl }}/carriers/gls#web-api---gls-express-0900">
GLS - Express 09:00</a>
</li>
<li>
Service
<a href="{{ site.baseurl }}/carriers/gls#web-api---gls-express-1000">
GLS - Express 10:00</a>
</li>
<li>
Service
<a href="{{ site.baseurl }}/carriers/gls#web-api---gls-express-1200">
GLS - Express 12:00</a>
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/gls#web-api---saturday-delivery">GLS - Saturday Delivery</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20200206---2019-02-06" class="mb-s">[20200206] - 2020-02-06</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service <a href="{{ site.baseurl }}/carriers/go.html#webservice---delivery-date">GO - Delivery Date</a>
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/go.html#webservice---delivery-time">GO - Delivery Time</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20191022---2019-10-22" class="mb-s">[20191022] - 2019-10-22</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service
<a href="{{ site.baseurl }}/carriers/cargo_international#v1---cash-on-delivery">
Cargo International - Cash on delivery</a>
</li>
<li>
Additional service <a href="{{ site.baseurl }}/carriers/dhl.html#v3---dhl-gogreen">DHL - GoGreen</a>
</li>
<li>
Service <a href="{{ site.baseurl }}/carriers/dpag#v3---dpag-warenpost-signature">
Deutsche Post - Warenpost International with signature</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20191022---2019-10-22" class="mb-s">[20191010] - 2019-10-10</h2>
<h3>Changed</h3>
<ul class="list-outside list-disc ml-m">
<li>
<a href="{{ site.baseurl }}/concepts/#label-format">Label format</a> can now be specified by
using the attribute <code>label.format</code>. With this the attribute <code>label.size</code>
is deprecated from now on.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20190930---2019-09-30" class="mb-s">[20190930] - 2019-09-30</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
You can now specify a <a href="{{ site.baseurl }}/carriers/hermes#hsi---cover-address">cover
address</a> that will be printed on the shipping label instead of the actual senders' address.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20190701---2019-07-01" class="mb-s">[20190701] - 2019-07-01</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Service <a href="{{ site.baseurl }}/carriers/gls#web-api---gls-pick-and-ship">GLS -
Pick&ShipService</a>
</li>
<li>
Customs declaration documents for UPS can now be created using
<a href="{{ site.baseurl }}/carriers/ups#ship-webservice---customs-declaration">UPS Commercial invoice</a>
</li>
</ul>
<h3>Changed</h3>
<ul class="list-outside list-disc ml-m">
<li>
The Deutsche Post discontinues the package types <em>Büchersendung</em> and <em>Warensendung
</em>. Instead they introduced the new type
<a href="{{ site.baseurl }}/carriers/dpag#v3---parcel-letter">Bücher- und Warenversand</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20190424---2019-04-24" class="mb-s">[20190424] - 2019-04-24</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Deutsche Post service
<a href="{{ site.baseurl }}/carriers/dpag#v3---dpag-warenpost-untracked">
Warenpost International</a> (tracked & untracked)
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20190312---2019-03-12" class="mb-s">[20190312] - 2019-03-12</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Hermes (HSI) <a href="{{ site.baseurl }}/carriers/hermes#hsi---advance-notice">customer alert</a> via sms and
email
</li>
<li>
Hermes (HSI) <a href="{{ site.baseurl }}/carriers/hermes#hsi---bulk">bulk shipments</a>
</li>
<li>
Hermes (HSI) <a href="{{ site.baseurl }}/carriers/hermes#hsi---hermes-identservice">ident check</a>
</li>
<li>
You can send Hermes (HSI) shipments directly to a parcel shop with the
<a href="{{ site.baseurl }}/carriers/hermes#hsi---parcel-shop-delivery-service">Hermes ParcelShopDeliveryService</a>
</li>
<li>
Hermes (HSI) <a href="{{ site.baseurl }}/carriers/hermes#hsi---returns">return shipments</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20190109---2019-01-09" class="mb-s">[20190109] - 2019-01-09</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
You can now supply an
<a href="{{ site.baseurl }}/carriers/gls#web-api---incoterms">incoterm</a> code when sending
shipments to dutiable countries (<em>when using GLS</em>).
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20181217---2018-12-17" class="mb-s">[20181217] - 2018-12-17</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service <a href="{{ site.baseurl }}/carriers/hermes#hsi---hermes-eilservice">Hermes EilService</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20180822---2018-08-22" class="mb-s">[20180822] - 2018-08-22</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
You can now supply <a href="{{ site.baseurl }}/carriers/dhl#v3---customs-declaration">customs
declaration data</a> when creating a shipment and we will return the corresponding customs
forms for the selected carrier.
</li>
<li>
Deutsche Post service <a href="{{ site.baseurl }}/carriers/dpag#v3---dpag-warenpost">
Warenpost</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20180814---2018-08-14" class="mb-s">[20180814] - 2018-08-14</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
More parameters to filter a
<a href="{{ site.baseurl }}/reference/#getting-a-list-of-shipments">list of shipments</a>
</li>
<li>
API endpoint to query
<a href="{{ site.baseurl }}/reference/#getting-a-list-of-pickup-requests">all pickup
requests</a>
</li>
<li>
API endpoint to query the
<a href="{{ site.baseurl }}/reference/#getting-information-about-a-pickup-request">details of
a single pickup request</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20180619---2018-06-19" class="mb-s">[20180619] - 2018-06-19</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Service <a href="{{ site.baseurl }}/carriers/ups#ship-webservice---ups-express-1200">UPS
Express 12:00</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20180201---2018-02-01" class="mb-s">[20180201] - 2018-02-01</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service
<a href="{{ site.baseurl }}/carriers/ups#ship-webservice---ups-adult-signature">UPS adult
signature</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20180126---2018-01-26" class="mb-s">[20180126] - 2018-01-26</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Additional service <a href="{{ site.baseurl }}/carriers/dhl#v3---premium-international">DHL
Premium International</a>
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20170202---2017-02-02" class="mb-s">[20170202] - 2017-02-02</h2>
<h3>Changed</h3>
<ul class="list-outside list-disc ml-m">
<li>
As previously stated, we've replaced the deprecated parameter <code>tracking_code</code> with
<code>carrier_tracking_no</code>. Tracker objects are using this parameter from now on.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20170127---2017-01-27" class="mb-s">[20170127] - 2017-01-27</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
Introducing the <a href="{{ site.baseurl }}/reference/#trackers">trackers ressource</a> to be
able to import shipments by sending us carrier tracking numbers of shipments that were
created, using another software.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20170119---2017-01-19" class="mb-s">[20170119] - 2017-01-19</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
When <a href="{{ site.baseurl }}/reference/#getting-information-about-a-shipment">reading a
shipment</a>, <code>shipper_notification_email</code> will now be returned (<em>if specified
during creation</em>)
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20161021---2016-10-21" class="mb-s">[20161021] - 2016-10-21</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
You can now <a href="{{ site.baseurl }}/carriers/dhl#v3---cash-on-delivery">specify a
reference</a> when creating a shipment that gets payed by cash on delivery, in order to see
the reference on the bank statement
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20161019---2016-10-19" class="mb-s">[20161019] - 2016-10-19</h2>
<h3>Removed</h3>
<ul class="list-outside list-disc ml-m">
<li>
We've removed the event type <code>shipcloud_label_created</code> because it was too confusing
and users didn't get the difference between this one and <code>label_created</code>.
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20160511---2016-05-11" class="mb-s">[20160511] - 2016-05-11</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
You can supply the id of an address now when creating a ShipmentQuote
</li>
</ul>
<h3>Changed</h3>
<ul class="list-outside list-disc ml-m">
<li>
When creating a ShipmentQuote you won't have to supply a from-address anymore. If it's missing
we'll use the standard from address that is associated with your account
</li>
</ul>
<h3>Fixed</h3>
<ul class="list-outside list-disc ml-m">
<li>
Returning the right error message when standard ship from address is missing a phone number and
making a PickupRequest for carrier UPS
</li>
<li>
Package type will now be returned as parameter <code>type</code> withing the object
<code>package</code> when creating a shipment
</li>
<li>
When creating a returns shipment we won't return the misleading tip about having to add a
<em>default address at your profile page</em> anymore, since you can supply a different
address
</li>
<li>
if <code>pakadoo.id</code> is <code>null</code> we'll return a error message now
</li>
<li>
if <code>pakadoo.id</code> is empty we'll return a error message now
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20160422---2016-04-22" class="mb-s">[20160422] - 2016-04-22</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
When making a PickupRequest you can now add a
<a href="{{ site.baseurl }}/reference/#pickup-requests">pickup_address</a> that tells the
carrier where the shipments should be collected
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20160304---2016-03-04" class="mb-s">[20160304] - 2016-03-04</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
We're now returning additional services when querying information about shipments
</li>
</ul>
</section>
<section class="mb-l">
<h2 id="20160119---2016-01-19" class="mb-s">[20160119] - 2016-01-19</h2>
<h3>Added</h3>
<ul class="list-outside list-disc ml-m">
<li>
When creating a <a href="{{ site.baseurl }}/reference/#pickup-requests">pickup request</a>
we're now returning an <code>id</code> that identifies the data
</li>
</ul>
</section>