AfterShip – WooCommerce Tracking - Version 1.4.3

Version Description

  • Add new couriers
  • Disable unused field for import orders to AfterShip system
Download this release

Release Info

Developer aftership
Plugin Icon 128x128 AfterShip – WooCommerce Tracking
Version 1.4.3
Comparing to
See all releases

Code changes from version 1.4.2 to 1.4.3

aftership.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: AfterShip - WooCommerce Tracking
4
  Plugin URI: http://aftership.com/
5
  Description: Add tracking number and carrier name to WooCommerce, display tracking info at order history page, auto import tracking numbers to AfterShip.
6
- Version: 1.4.2
7
  Author: AfterShip
8
  Author URI: http://aftership.com
9
 
3
  Plugin Name: AfterShip - WooCommerce Tracking
4
  Plugin URI: http://aftership.com/
5
  Description: Add tracking number and carrier name to WooCommerce, display tracking info at order history page, auto import tracking numbers to AfterShip.
6
+ Version: 1.4.3
7
  Author: AfterShip
8
  Author URI: http://aftership.com
9
 
api/class-aftership-api-orders.php CHANGED
@@ -119,25 +119,25 @@ class AfterShip_API_Orders extends AfterShip_API_Resource
119
  'order_number' => $order->get_order_number(),
120
  'created_at' => $this->server->format_datetime($order_post->post_date_gmt),
121
  'updated_at' => $this->server->format_datetime($order_post->post_modified_gmt),
122
- 'completed_at' => $this->server->format_datetime($order->completed_date, true),
123
- 'status' => $order->status,
124
- 'currency' => $order->order_currency,
125
- 'total' => wc_format_decimal($order->get_total(), 2),
126
- 'subtotal' => wc_format_decimal($this->get_order_subtotal($order), 2),
127
- 'total_line_items_quantity' => $order->get_item_count(),
128
- 'total_tax' => wc_format_decimal($order->get_total_tax(), 2),
129
- 'total_shipping' => wc_format_decimal($order->get_total_shipping(), 2),
130
- 'cart_tax' => wc_format_decimal($order->get_cart_tax(), 2),
131
- 'shipping_tax' => wc_format_decimal($order->get_shipping_tax(), 2),
132
- 'total_discount' => wc_format_decimal($order->get_total_discount(), 2),
133
  // 'cart_discount' => wc_format_decimal($order->get_cart_discount(), 2),
134
  // 'order_discount' => wc_format_decimal($order->get_order_discount(), 2),
135
- 'shipping_methods' => $order->get_shipping_method(),
136
- 'payment_details' => array(
137
- 'method_id' => $order->payment_method,
138
- 'method_title' => $order->payment_method_title,
139
- 'paid' => isset($order->paid_date),
140
- ),
141
  'billing_address' => array(
142
  'first_name' => $order->billing_first_name,
143
  'last_name' => $order->billing_last_name,
@@ -162,37 +162,38 @@ class AfterShip_API_Orders extends AfterShip_API_Resource
162
  'postcode' => $order->shipping_postcode,
163
  'country' => $order->shipping_country,
164
  ),
165
- 'note' => $order->customer_note,
166
- 'customer_ip' => $order->customer_ip_address,
167
- 'customer_user_agent' => $order->customer_user_agent,
168
- 'customer_id' => $order->customer_user,
169
- 'view_order_url' => $order->get_view_order_url(),
170
  'line_items' => array(),
171
- 'shipping_lines' => array(),
172
- 'tax_lines' => array(),
173
- 'fee_lines' => array(),
174
- 'coupon_lines' => array(),
175
  );
176
 
177
  // add line items
178
  foreach ($order->get_items() as $item_id => $item) {
179
 
180
- $product = $order->get_product_from_item($item);
181
 
182
  $order_data['line_items'][] = array(
183
  'id' => $item_id,
184
- 'subtotal' => wc_format_decimal($order->get_line_subtotal($item), 2),
185
- 'total' => wc_format_decimal($order->get_line_total($item), 2),
186
- 'total_tax' => wc_format_decimal($order->get_line_tax($item), 2),
187
- 'price' => wc_format_decimal($order->get_item_total($item), 2),
188
  'quantity' => (int)$item['qty'],
189
- 'tax_class' => (!empty($item['tax_class'])) ? $item['tax_class'] : null,
190
  'name' => $item['name'],
191
- 'product_id' => (isset($product->variation_id)) ? $product->variation_id : $product->id,
192
- 'sku' => is_object($product) ? $product->get_sku() : null,
193
  );
194
  }
195
 
 
196
  // add shipping
197
  foreach ($order->get_shipping_methods() as $shipping_item_id => $shipping_item) {
198
 
@@ -236,6 +237,7 @@ class AfterShip_API_Orders extends AfterShip_API_Resource
236
  'amount' => wc_format_decimal($coupon_item['discount_amount'], 2),
237
  );
238
  }
 
239
 
240
  // aftership add
241
  $options = get_option('aftership_option_name');
119
  'order_number' => $order->get_order_number(),
120
  'created_at' => $this->server->format_datetime($order_post->post_date_gmt),
121
  'updated_at' => $this->server->format_datetime($order_post->post_modified_gmt),
122
+ // 'completed_at' => $this->server->format_datetime($order->completed_date, true),
123
+ // 'status' => $order->status,
124
+ // 'currency' => $order->order_currency,
125
+ // 'total' => wc_format_decimal($order->get_total(), 2),
126
+ // 'subtotal' => wc_format_decimal($this->get_order_subtotal($order), 2),
127
+ // 'total_line_items_quantity' => $order->get_item_count(),
128
+ // 'total_tax' => wc_format_decimal($order->get_total_tax(), 2),
129
+ // 'total_shipping' => wc_format_decimal($order->get_total_shipping(), 2),
130
+ // 'cart_tax' => wc_format_decimal($order->get_cart_tax(), 2),
131
+ // 'shipping_tax' => wc_format_decimal($order->get_shipping_tax(), 2),
132
+ // 'total_discount' => wc_format_decimal($order->get_total_discount(), 2),
133
  // 'cart_discount' => wc_format_decimal($order->get_cart_discount(), 2),
134
  // 'order_discount' => wc_format_decimal($order->get_order_discount(), 2),
135
+ // 'shipping_methods' => $order->get_shipping_method(),
136
+ // 'payment_details' => array(
137
+ // 'method_id' => $order->payment_method,
138
+ // 'method_title' => $order->payment_method_title,
139
+ // 'paid' => isset($order->paid_date),
140
+ // ),
141
  'billing_address' => array(
142
  'first_name' => $order->billing_first_name,
143
  'last_name' => $order->billing_last_name,
162
  'postcode' => $order->shipping_postcode,
163
  'country' => $order->shipping_country,
164
  ),
165
+ // 'note' => $order->customer_note,
166
+ // 'customer_ip' => $order->customer_ip_address,
167
+ // 'customer_user_agent' => $order->customer_user_agent,
168
+ // 'customer_id' => $order->customer_user,
169
+ // 'view_order_url' => $order->get_view_order_url(),
170
  'line_items' => array(),
171
+ // 'shipping_lines' => array(),
172
+ // 'tax_lines' => array(),
173
+ // 'fee_lines' => array(),
174
+ // 'coupon_lines' => array(),
175
  );
176
 
177
  // add line items
178
  foreach ($order->get_items() as $item_id => $item) {
179
 
180
+ // $product = $order->get_product_from_item($item);
181
 
182
  $order_data['line_items'][] = array(
183
  'id' => $item_id,
184
+ // 'subtotal' => wc_format_decimal($order->get_line_subtotal($item), 2),
185
+ // 'total' => wc_format_decimal($order->get_line_total($item), 2),
186
+ // 'total_tax' => wc_format_decimal($order->get_line_tax($item), 2),
187
+ // 'price' => wc_format_decimal($order->get_item_total($item), 2),
188
  'quantity' => (int)$item['qty'],
189
+ // 'tax_class' => (!empty($item['tax_class'])) ? $item['tax_class'] : null,
190
  'name' => $item['name'],
191
+ // 'product_id' => (isset($product->variation_id)) ? $product->variation_id : $product->id,
192
+ // 'sku' => is_object($product) ? $product->get_sku() : null,
193
  );
194
  }
195
 
196
+ /*
197
  // add shipping
198
  foreach ($order->get_shipping_methods() as $shipping_item_id => $shipping_item) {
199
 
237
  'amount' => wc_format_decimal($coupon_item['discount_amount'], 2),
238
  );
239
  }
240
+ */
241
 
242
  // aftership add
243
  $options = get_option('aftership_option_name');
assets/js/couriers.js CHANGED
@@ -1,1482 +1,1532 @@
1
  function get_couriers() {
2
- var data = [
3
- {
4
- "slug": "17postservice",
5
- "name": "17 Post Service",
6
- "other_name": "17PostService",
7
- "required_fields": []
8
- },
9
- {
10
- "slug": "2go",
11
- "name": "2GO",
12
- "other_name": "Negros Navigation",
13
- "required_fields": []
14
- },
15
- {
16
- "slug": "4px",
17
- "name": "4PX",
18
- "other_name": "递四方",
19
- "required_fields": []
20
- },
21
- {
22
- "slug": "4squaregroup",
23
- "name": "4Square Group",
24
- "other_name": "4 Square",
25
- "required_fields": []
26
- },
27
- {
28
- "slug": "800bestex",
29
- "name": "Best Express",
30
- "other_name": "百世汇通",
31
- "required_fields": []
32
- },
33
- {
34
- "slug": "abf",
35
- "name": "ABF Freight",
36
- "other_name": "Arkansas Best Corporation",
37
- "required_fields": []
38
- },
39
- {
40
- "slug": "acscourier",
41
- "name": "ACS Courier",
42
- "other_name": "Αναζήτηση Καταστημάτων",
43
- "required_fields": []
44
- },
45
- {
46
- "slug": "aeroflash",
47
- "name": "Mexico AeroFlash",
48
- "other_name": "AeroFlash",
49
- "required_fields": []
50
- },
51
- {
52
- "slug": "air21",
53
- "name": "AIR21",
54
- "other_name": "AIR 21 PH",
55
- "required_fields": []
56
- },
57
- {
58
- "slug": "an-post",
59
- "name": "An Post",
60
- "other_name": "Ireland Post",
61
- "required_fields": []
62
- },
63
- {
64
- "slug": "apc",
65
- "name": "APC Postal Logistics",
66
- "other_name": "APC-PLI",
67
- "required_fields": []
68
- },
69
- {
70
- "slug": "aramex",
71
- "name": "Aramex",
72
- "other_name": "ارامكس",
73
- "required_fields": []
74
- },
75
- {
76
- "slug": "arrowxl",
77
- "name": "Arrow XL",
78
- "other_name": "Yodel XL",
79
- "required_fields": [
80
- "tracking_postal_code"
81
- ]
82
- },
83
- {
84
- "slug": "asendia-usa",
85
- "name": "Asendia USA",
86
- "other_name": "Brokers Worldwide",
87
- "required_fields": []
88
- },
89
- {
90
- "slug": "asm",
91
- "name": "ASM",
92
- "other_name": "Asm-Red",
93
- "required_fields": [
94
- "tracking_postal_code"
95
- ]
96
- },
97
- {
98
- "slug": "aupost-china",
99
- "name": "AuPost China",
100
- "other_name": "澳邮宝",
101
- "required_fields": []
102
- },
103
- {
104
- "slug": "australia-post",
105
- "name": "Australia Post",
106
- "other_name": "AusPost",
107
- "required_fields": []
108
- },
109
- {
110
- "slug": "austrian-post",
111
- "name": "Austrian Post (Express)",
112
- "other_name": "Österreichische Post AG",
113
- "required_fields": []
114
- },
115
- {
116
- "slug": "austrian-post-registered",
117
- "name": "Austrian Post (Registered)",
118
- "other_name": "Österreichische Post AG",
119
- "required_fields": []
120
- },
121
- {
122
- "slug": "belpost",
123
- "name": "Belpost",
124
- "other_name": "Belposhta, Белпочта",
125
- "required_fields": []
126
- },
127
- {
128
- "slug": "bgpost",
129
- "name": "Bulgarian Posts",
130
- "other_name": "Български пощи",
131
- "required_fields": []
132
- },
133
- {
134
- "slug": "bluedart",
135
- "name": "Bluedart",
136
- "other_name": "Blue Dart Express",
137
- "required_fields": []
138
- },
139
- {
140
- "slug": "boxc",
141
- "name": "BOXC",
142
- "other_name": "BOXC快遞",
143
- "required_fields": []
144
- },
145
- {
146
- "slug": "bpost",
147
- "name": "Belgium Post",
148
- "other_name": "bpost, Belgian Post",
149
- "required_fields": []
150
- },
151
- {
152
- "slug": "bpost-international",
153
- "name": "bpost international",
154
- "other_name": "Belgium Post International, Minipak DDU",
155
- "required_fields": []
156
- },
157
- {
158
- "slug": "brazil-correios",
159
- "name": "Brazil Correios",
160
- "other_name": "Brazilian Post",
161
- "required_fields": []
162
- },
163
- {
164
- "slug": "brt-it",
165
- "name": "BRT Bartolini",
166
- "other_name": "BRT Corriere Espresso, DPD Italy",
167
- "required_fields": []
168
- },
169
- {
170
- "slug": "cambodia-post",
171
- "name": "Cambodia Post",
172
- "other_name": "Cambodia Post",
173
- "required_fields": []
174
- },
175
- {
176
- "slug": "canada-post",
177
- "name": "Canada Post",
178
- "other_name": "Postes Canada",
179
- "required_fields": []
180
- },
181
- {
182
- "slug": "canpar",
183
- "name": "Canpar Courier",
184
- "other_name": "TransForce",
185
- "required_fields": []
186
- },
187
- {
188
- "slug": "ceska-posta",
189
- "name": "Česká Pošta",
190
- "other_name": "Czech Post",
191
- "required_fields": []
192
- },
193
- {
194
- "slug": "china-ems",
195
- "name": "China EMS",
196
- "other_name": "中国邮政速递物流",
197
- "required_fields": []
198
- },
199
- {
200
- "slug": "china-post",
201
- "name": "China Post",
202
- "other_name": "中国邮政, ePacket, e-Packet",
203
- "required_fields": []
204
- },
205
- {
206
- "slug": "chronopost-france",
207
- "name": "Chronopost France",
208
- "other_name": "La Poste EMS",
209
- "required_fields": []
210
- },
211
- {
212
- "slug": "chronopost-portugal",
213
- "name": "Chronopost Portugal",
214
- "other_name": "Chronopost pt",
215
- "required_fields": []
216
- },
217
- {
218
- "slug": "city-link",
219
- "name": "City Link",
220
- "other_name": "City Link UK",
221
- "required_fields": []
222
- },
223
- {
224
- "slug": "city-link-international",
225
- "name": "City Link International",
226
- "other_name": "citylink.norsknet.com",
227
- "required_fields": []
228
- },
229
- {
230
- "slug": "citylinkexpress",
231
- "name": "City-Link Express",
232
- "other_name": "Citylink Malaysia",
233
- "required_fields": []
234
- },
235
- {
236
- "slug": "cj-gls",
237
- "name": "CJ GLS",
238
- "other_name": "CJ Korea Express, 씨제이지엘에스주식회사",
239
- "required_fields": []
240
- },
241
- {
242
- "slug": "cnexps",
243
- "name": "CNE Express",
244
- "other_name": "国际快递",
245
- "required_fields": []
246
- },
247
- {
248
- "slug": "colis-prive",
249
- "name": "Colis Privé",
250
- "other_name": "ColisPrivé",
251
- "required_fields": []
252
- },
253
- {
254
- "slug": "colissimo",
255
- "name": "Colissimo",
256
- "other_name": "Colissimo fr",
257
- "required_fields": []
258
- },
259
- {
260
- "slug": "collectplus",
261
- "name": "Collect+",
262
- "other_name": "Collect Plus UK",
263
- "required_fields": []
264
- },
265
- {
266
- "slug": "correo-argentino",
267
- "name": "Correo Argentino",
268
- "other_name": "Argentina Post",
269
- "required_fields": []
270
- },
271
- {
272
- "slug": "correos-chile",
273
- "name": "Correos Chile",
274
- "other_name": "Chile Post",
275
- "required_fields": []
276
- },
277
- {
278
- "slug": "correos-de-mexico",
279
- "name": "Correos de Mexico",
280
- "other_name": "Mexico Post",
281
- "required_fields": []
282
- },
283
- {
284
- "slug": "courier-plus",
285
- "name": "Courier Plus",
286
- "other_name": "Courier Plus",
287
- "required_fields": []
288
- },
289
- {
290
- "slug": "courierit",
291
- "name": "Courier IT",
292
- "other_name": "Courierit",
293
- "required_fields": []
294
- },
295
- {
296
- "slug": "courierpost",
297
- "name": "CourierPost",
298
- "other_name": "Express Couriers",
299
- "required_fields": []
300
- },
301
- {
302
- "slug": "couriers-please",
303
- "name": "Couriers Please",
304
- "other_name": "CouriersPlease",
305
- "required_fields": []
306
- },
307
- {
308
- "slug": "cyprus-post",
309
- "name": "Cyprus Post",
310
- "other_name": "ΚΥΠΡΙΑΚΑ ΤΑΧΥΔΡΟΜΕΙΑ",
311
- "required_fields": []
312
- },
313
- {
314
- "slug": "danmark-post",
315
- "name": "Post Danmark",
316
- "other_name": "Danske Post",
317
- "required_fields": []
318
- },
319
- {
320
- "slug": "dbschenker-se",
321
- "name": "DB Schenker Sweden",
322
- "other_name": "Deutsche Bahn",
323
- "required_fields": []
324
- },
325
- {
326
- "slug": "delhivery",
327
- "name": "Delhivery",
328
- "other_name": "Gharpay",
329
- "required_fields": []
330
- },
331
- {
332
- "slug": "deltec-courier",
333
- "name": "Deltec Courier",
334
- "other_name": "Deltec Interntional Courier",
335
- "required_fields": []
336
- },
337
- {
338
- "slug": "deutsch-post",
339
- "name": "Deutsche Post Mail",
340
- "other_name": "dpdhl",
341
- "required_fields": [
342
- "tracking_ship_date"
343
- ]
344
- },
345
- {
346
- "slug": "dhl",
347
- "name": "DHL Express",
348
- "other_name": "DHL International",
349
- "required_fields": []
350
- },
351
- {
352
- "slug": "dhl-benelux",
353
- "name": "DHL Benelux",
354
- "other_name": "DHL TrackNet Benelux",
355
- "required_fields": []
356
- },
357
- {
358
- "slug": "dhl-deliverit",
359
- "name": "DHL 2-Mann-Handling",
360
- "other_name": "DHL Deliver IT",
361
- "required_fields": [
362
- "tracking_postal_code"
363
- ]
364
- },
365
- {
366
- "slug": "dhl-es",
367
- "name": "DHL Spain Domestic",
368
- "other_name": "DHL España",
369
- "required_fields": []
370
- },
371
- {
372
- "slug": "dhl-germany",
373
- "name": "Deutsche Post DHL",
374
- "other_name": "DHL Germany",
375
- "required_fields": []
376
- },
377
- {
378
- "slug": "dhl-global-mail",
379
- "name": "DHL eCommerce",
380
- "other_name": "DHL Global Mail",
381
- "required_fields": []
382
- },
383
- {
384
- "slug": "dhl-global-mail-asia",
385
- "name": "DHL Global Mail Asia",
386
- "other_name": "DGM Asia",
387
- "required_fields": []
388
- },
389
- {
390
- "slug": "dhl-nl",
391
- "name": "DHL Netherlands",
392
- "other_name": "DHL Nederlands",
393
- "required_fields": []
394
- },
395
- {
396
- "slug": "dhl-pieceid",
397
- "name": "DHL Express (Piece ID)",
398
- "other_name": "DHL International",
399
- "required_fields": []
400
- },
401
- {
402
- "slug": "dhl-poland",
403
- "name": "DHL Poland Domestic",
404
- "other_name": "DHL Polska",
405
- "required_fields": []
406
- },
407
- {
408
- "slug": "dhlparcel-nl",
409
- "name": "DHL Parcel NL",
410
- "other_name": "Selektvracht, dhlparcel.nl",
411
- "required_fields": []
412
- },
413
- {
414
- "slug": "directlink",
415
- "name": "Direct Link",
416
- "other_name": "Direct Link",
417
- "required_fields": []
418
- },
419
- {
420
- "slug": "dotzot",
421
- "name": "Dotzot",
422
- "other_name": "Dotzot",
423
- "required_fields": []
424
- },
425
- {
426
- "slug": "dpd",
427
- "name": "DPD",
428
- "other_name": "Dynamic Parcel Distribution",
429
- "required_fields": []
430
- },
431
- {
432
- "slug": "dpd-de",
433
- "name": "DPD Germany",
434
- "other_name": "DPD Germany",
435
- "required_fields": []
436
- },
437
- {
438
- "slug": "dpd-ireland",
439
- "name": "DPD Ireland",
440
- "other_name": "DPD ie",
441
- "required_fields": []
442
- },
443
- {
444
- "slug": "dpd-poland",
445
- "name": "DPD Poland",
446
- "other_name": "Dynamic Parcel Distribution Poland",
447
- "required_fields": []
448
- },
449
- {
450
- "slug": "dpd-uk",
451
- "name": "DPD UK",
452
- "other_name": "Dynamic Parcel Distribution UK",
453
- "required_fields": []
454
- },
455
- {
456
- "slug": "dpe-za",
457
- "name": "DPE South Africa",
458
- "other_name": "DPE Worldwide Express",
459
- "required_fields": []
460
- },
461
- {
462
- "slug": "dtdc",
463
- "name": "DTDC India",
464
- "other_name": "DTDC Courier & Cargo",
465
- "required_fields": []
466
- },
467
- {
468
- "slug": "dynamic-logistics",
469
- "name": "Dynamic Logistics",
470
- "other_name": "Dynamic Logistics Thailand",
471
- "required_fields": [
472
- "tracking_account_number"
473
- ]
474
- },
475
- {
476
- "slug": "ec-firstclass",
477
- "name": "EC-Firstclass",
478
- "other_name": "ChuKou1, CK1",
479
- "required_fields": []
480
- },
481
- {
482
- "slug": "ecom-express",
483
- "name": "Ecom Express",
484
- "other_name": "EcomExpress",
485
- "required_fields": []
486
- },
487
- {
488
- "slug": "elta-courier",
489
- "name": "ELTA Hellenic Post",
490
- "other_name": "Greece Post, Ελληνικά Ταχυδρομεία, ELTA Courier, Ταχυμεταφορές ΕΛΤΑ",
491
- "required_fields": []
492
- },
493
- {
494
- "slug": "emirates-post",
495
- "name": "Emirates Post",
496
- "other_name": "مجموعة بريد الإمارات, UAE Post",
497
- "required_fields": []
498
- },
499
- {
500
- "slug": "empsexpress",
501
- "name": "EMPS Express",
502
- "other_name": "Shenzhen Express Mail & Parcel Service Freight Forwarding Co.,",
503
- "required_fields": []
504
- },
505
- {
506
- "slug": "envialia",
507
- "name": "Envialia",
508
- "other_name": "Envialia Spain",
509
- "required_fields": []
510
- },
511
- {
512
- "slug": "equick-cn",
513
- "name": "Equick China",
514
- "other_name": "北京网易速达",
515
- "required_fields": []
516
- },
517
- {
518
- "slug": "estafeta",
519
- "name": "Estafeta",
520
- "other_name": "Estafeta Mexicana",
521
- "required_fields": []
522
- },
523
- {
524
- "slug": "estes",
525
- "name": "Estes",
526
- "other_name": "Estes Express Lines",
527
- "required_fields": []
528
- },
529
- {
530
- "slug": "exapaq",
531
- "name": "Exapaq",
532
- "other_name": "DPD France",
533
- "required_fields": []
534
- },
535
- {
536
- "slug": "fastway-au",
537
- "name": "Fastway Australia",
538
- "other_name": "Fastway Couriers",
539
- "required_fields": []
540
- },
541
- {
542
- "slug": "fastway-ireland",
543
- "name": "Fastway Ireland",
544
- "other_name": "Fastway Couriers",
545
- "required_fields": []
546
- },
547
- {
548
- "slug": "fastway-za",
549
- "name": "Fastway South Africa",
550
- "other_name": "Fastway Couriers",
551
- "required_fields": []
552
- },
553
- {
554
- "slug": "fedex",
555
- "name": "FedEx",
556
- "other_name": "Federal Express",
557
- "required_fields": []
558
- },
559
- {
560
- "slug": "fedex-uk",
561
- "name": "FedEx UK",
562
- "other_name": "FedEx United Kingdom",
563
- "required_fields": []
564
- },
565
- {
566
- "slug": "first-flight",
567
- "name": "First Flight Couriers",
568
- "other_name": "FirstFlight India",
569
- "required_fields": []
570
- },
571
- {
572
- "slug": "first-logistics",
573
- "name": "First Logistics",
574
- "other_name": "PT Synergy First Logistics",
575
- "required_fields": []
576
- },
577
- {
578
- "slug": "flytexpress",
579
- "name": "Flyt Express",
580
- "other_name": "飞特物流",
581
- "required_fields": []
582
- },
583
- {
584
- "slug": "gati-kwe",
585
- "name": "Gati-KWE",
586
- "other_name": "Gati-Kintetsu Express",
587
- "required_fields": []
588
- },
589
- {
590
- "slug": "gdex",
591
- "name": "GDEX",
592
- "other_name": "GD Express",
593
- "required_fields": []
594
- },
595
- {
596
- "slug": "geodis-calberson-fr",
597
- "name": "Geodis Calberson France",
598
- "other_name": "Geodiscalberson",
599
- "required_fields": [
600
- "tracking_postal_code"
601
- ]
602
- },
603
- {
604
- "slug": "ghn",
605
- "name": "Giao hàng nhanh",
606
- "other_name": "Giaohangnhanh.vn, GHN",
607
- "required_fields": []
608
- },
609
- {
610
- "slug": "gls",
611
- "name": "GLS",
612
- "other_name": "General Logistics Systems",
613
- "required_fields": []
614
- },
615
- {
616
- "slug": "gls-italy",
617
- "name": "GLS Italy",
618
- "other_name": "GLS Corriere Espresso",
619
- "required_fields": []
620
- },
621
- {
622
- "slug": "gls-netherlands",
623
- "name": "GLS Netherlands",
624
- "other_name": "GLS NL",
625
- "required_fields": [
626
- "tracking_postal_code"
627
- ]
628
- },
629
- {
630
- "slug": "gojavas",
631
- "name": "GoJaVAS",
632
- "other_name": "JaVAS",
633
- "required_fields": []
634
- },
635
- {
636
- "slug": "greyhound",
637
- "name": "Greyhound",
638
- "other_name": "Greyhound Package Express",
639
- "required_fields": []
640
- },
641
- {
642
- "slug": "hermes",
643
- "name": "Hermesworld",
644
- "other_name": "Hermes-europe UK",
645
- "required_fields": []
646
- },
647
- {
648
- "slug": "hermes-de",
649
- "name": "Hermes Germany",
650
- "other_name": "myhermes.de, Hermes Logistik Gruppe Deutschland",
651
- "required_fields": []
652
- },
653
- {
654
- "slug": "hong-kong-post",
655
- "name": "Hong Kong Post",
656
- "other_name": "香港郵政",
657
- "required_fields": []
658
- },
659
- {
660
- "slug": "hrvatska-posta",
661
- "name": "Hrvatska Pošta",
662
- "other_name": "Croatia Post",
663
- "required_fields": []
664
- },
665
- {
666
- "slug": "i-parcel",
667
- "name": "i-parcel",
668
- "other_name": "iparcel",
669
- "required_fields": []
670
- },
671
- {
672
- "slug": "india-post",
673
- "name": "India Post Domestic",
674
- "other_name": "भारतीय डाक",
675
- "required_fields": []
676
- },
677
- {
678
- "slug": "india-post-int",
679
- "name": "India Post International",
680
- "other_name": "भारतीय डाक, Speed Post & eMO, EMS, IPS Web",
681
- "required_fields": []
682
- },
683
- {
684
- "slug": "interlink-express",
685
- "name": "Interlink Express",
686
- "other_name": "Interlink UK",
687
- "required_fields": []
688
- },
689
- {
690
- "slug": "international-seur",
691
- "name": "International Seur",
692
- "other_name": "SEUR Internacional",
693
- "required_fields": []
694
- },
695
- {
696
- "slug": "israel-post",
697
- "name": "Israel Post",
698
- "other_name": "חברת דואר ישראל",
699
- "required_fields": []
700
- },
701
- {
702
- "slug": "israel-post-domestic",
703
- "name": "Israel Post Domestic",
704
- "other_name": "חברת דואר ישראל מקומית",
705
- "required_fields": []
706
- },
707
- {
708
- "slug": "italy-sda",
709
- "name": "Italy SDA",
710
- "other_name": "SDA Express Courier",
711
- "required_fields": []
712
- },
713
- {
714
- "slug": "jam-express",
715
- "name": "Jam Express",
716
- "other_name": "JAM Global Express",
717
- "required_fields": []
718
- },
719
- {
720
- "slug": "japan-post",
721
- "name": "Japan Post",
722
- "other_name": "日本郵便",
723
- "required_fields": []
724
- },
725
- {
726
- "slug": "jcex",
727
- "name": "JCEX",
728
- "other_name": "JiaCheng, 杭州佳成",
729
- "required_fields": []
730
- },
731
- {
732
- "slug": "jne",
733
- "name": "JNE",
734
- "other_name": "Express Across Nation, Tiki Jalur Nugraha Ekakurir",
735
- "required_fields": []
736
- },
737
- {
738
- "slug": "kerry-logistics",
739
- "name": "Kerry Express Thailand",
740
- "other_name": "嘉里物流, Kerry Logistics",
741
- "required_fields": []
742
- },
743
- {
744
- "slug": "kn",
745
- "name": "Kuehne + Nagel",
746
- "other_name": "KN",
747
- "required_fields": []
748
- },
749
- {
750
- "slug": "korea-post",
751
- "name": "Korea Post",
752
- "other_name": "우정사업본부",
753
- "required_fields": []
754
- },
755
- {
756
- "slug": "la-poste-colissimo",
757
- "name": "La Poste",
758
- "other_name": "Coliposte",
759
- "required_fields": []
760
- },
761
- {
762
- "slug": "lasership",
763
- "name": "LaserShip",
764
- "other_name": "LaserShip",
765
- "required_fields": []
766
- },
767
- {
768
- "slug": "lbcexpress",
769
- "name": "LBC Express",
770
- "other_name": "LBC Express",
771
- "required_fields": []
772
- },
773
- {
774
- "slug": "lietuvos-pastas",
775
- "name": "Lietuvos paštas",
776
- "other_name": "Lithuania Post, LP Express",
777
- "required_fields": []
778
- },
779
- {
780
- "slug": "magyar-posta",
781
- "name": "Magyar Posta",
782
- "other_name": "Hungarian Post",
783
- "required_fields": []
784
- },
785
- {
786
- "slug": "malaysia-post",
787
- "name": "Malaysia Post EMS / Poslaju",
788
- "other_name": "Pos Ekspres, Pos Malaysia Express",
789
- "required_fields": []
790
- },
791
- {
792
- "slug": "malaysia-post-posdaftar",
793
- "name": "Malaysia Post - Registered",
794
- "other_name": "PosDaftar",
795
- "required_fields": []
796
- },
797
- {
798
- "slug": "mexico-redpack",
799
- "name": "Mexico Redpack",
800
- "other_name": "TNT Mexico",
801
- "required_fields": []
802
- },
803
- {
804
- "slug": "mexico-senda-express",
805
- "name": "Mexico Senda Express",
806
- "other_name": "Mexico Senda Express",
807
- "required_fields": []
808
- },
809
- {
810
- "slug": "mrw-spain",
811
- "name": "MRW",
812
- "other_name": "MRW Spain",
813
- "required_fields": []
814
- },
815
- {
816
- "slug": "myhermes-uk",
817
- "name": "myHermes UK",
818
- "other_name": "",
819
- "required_fields": []
820
- },
821
- {
822
- "slug": "mypostonline",
823
- "name": "Mypostonline",
824
- "other_name": "MYBOXPOST",
825
- "required_fields": []
826
- },
827
- {
828
- "slug": "nacex-spain",
829
- "name": "NACEX Spain",
830
- "other_name": "NACEX Logista",
831
- "required_fields": [
832
- "tracking_postal_code"
833
- ]
834
- },
835
- {
836
- "slug": "new-zealand-post",
837
- "name": "New Zealand Post",
838
- "other_name": "NZ Post",
839
- "required_fields": []
840
- },
841
- {
842
- "slug": "nipost",
843
- "name": "NiPost",
844
- "other_name": "Nigerian Postal Service",
845
- "required_fields": []
846
- },
847
- {
848
- "slug": "nova-poshta",
849
- "name": "Nova Poshta",
850
- "other_name": "Новая Почта",
851
- "required_fields": []
852
- },
853
- {
854
- "slug": "oca-ar",
855
- "name": "OCA Argentina",
856
- "other_name": "OCA e-Pak",
857
- "required_fields": []
858
- },
859
- {
860
- "slug": "ontrac",
861
- "name": "OnTrac",
862
- "other_name": "OnTrac Shipping",
863
- "required_fields": []
864
- },
865
- {
866
- "slug": "opek",
867
- "name": "FedEx Poland Domestic",
868
- "other_name": "OPEK",
869
- "required_fields": []
870
- },
871
- {
872
- "slug": "packlink",
873
- "name": "Packlink",
874
- "other_name": "Packlink Spain",
875
- "required_fields": []
876
- },
877
- {
878
- "slug": "pandulogistics",
879
- "name": "Pandu Logistics",
880
- "other_name": "",
881
- "required_fields": []
882
- },
883
- {
884
- "slug": "panther",
885
- "name": "Panther",
886
- "other_name": "Panther Group UK",
887
- "required_fields": [
888
- "tracking_account_number"
889
- ]
890
- },
891
- {
892
- "slug": "parcel-force",
893
- "name": "Parcel Force",
894
- "other_name": "Parcelforce UK",
895
- "required_fields": []
896
- },
897
- {
898
- "slug": "poczta-polska",
899
- "name": "Poczta Polska",
900
- "other_name": "Poland Post",
901
- "required_fields": []
902
- },
903
- {
904
- "slug": "portugal-ctt",
905
- "name": "Portugal CTT",
906
- "other_name": "Correios de Portugal",
907
- "required_fields": []
908
- },
909
- {
910
- "slug": "portugal-seur",
911
- "name": "Portugal Seur",
912
- "other_name": "SEUR",
913
- "required_fields": []
914
- },
915
- {
916
- "slug": "pos-indonesia",
917
- "name": "Pos Indonesia Domestic",
918
- "other_name": "Indonesian Post Domestic",
919
- "required_fields": []
920
- },
921
- {
922
- "slug": "pos-indonesia-int",
923
- "name": "Pos Indonesia Int'l",
924
- "other_name": "Indonesian Post International EMS",
925
- "required_fields": []
926
- },
927
- {
928
- "slug": "post56",
929
- "name": "Post56",
930
- "other_name": "捷邮快递",
931
- "required_fields": []
932
- },
933
- {
934
- "slug": "posta-romana",
935
- "name": "Poșta Română",
936
- "other_name": "Romania Post",
937
- "required_fields": []
938
- },
939
- {
940
- "slug": "poste-italiane",
941
- "name": "Poste Italiane",
942
- "other_name": "Italian Post",
943
- "required_fields": []
944
- },
945
- {
946
- "slug": "poste-italiane-paccocelere",
947
- "name": "Poste Italiane Paccocelere",
948
- "other_name": "Italian Post EMS / Express",
949
- "required_fields": []
950
- },
951
- {
952
- "slug": "posten-norge",
953
- "name": "Posten Norge / Bring",
954
- "other_name": "Norway Post, Norska Posten",
955
- "required_fields": []
956
- },
957
- {
958
- "slug": "posti",
959
- "name": "Itella Posti",
960
- "other_name": "Finland Post",
961
- "required_fields": []
962
- },
963
- {
964
- "slug": "postnl",
965
- "name": "PostNL Domestic",
966
- "other_name": "PostNL Pakketten, TNT Post Netherlands",
967
- "required_fields": [
968
- "tracking_postal_code"
969
- ]
970
- },
971
- {
972
- "slug": "postnl-3s",
973
- "name": "PostNL International 3S",
974
- "other_name": "TNT Post parcel service United Kingdom",
975
- "required_fields": [
976
- "tracking_destination_country",
977
- "tracking_postal_code"
978
- ]
979
- },
980
- {
981
- "slug": "postnl-international",
982
- "name": "PostNL International",
983
- "other_name": "Netherlands Post, Spring Global Mail",
984
- "required_fields": []
985
- },
986
- {
987
- "slug": "postnord",
988
- "name": "PostNord Logistics",
989
- "other_name": "Posten Norden",
990
- "required_fields": []
991
- },
992
- {
993
- "slug": "ppbyb",
994
- "name": "PayPal Package",
995
- "other_name": "贝邮宝",
996
- "required_fields": []
997
- },
998
- {
999
- "slug": "professional-couriers",
1000
- "name": "Professional Couriers",
1001
- "other_name": "TPC India",
1002
- "required_fields": []
1003
- },
1004
- {
1005
- "slug": "ptt-posta",
1006
- "name": "PTT Posta",
1007
- "other_name": "Turkish Post",
1008
- "required_fields": []
1009
- },
1010
- {
1011
- "slug": "purolator",
1012
- "name": "Purolator",
1013
- "other_name": "Purolator Freight",
1014
- "required_fields": []
1015
- },
1016
- {
1017
- "slug": "qxpress",
1018
- "name": "Qxpress",
1019
- "other_name": "Qxpress Qoo10",
1020
- "required_fields": []
1021
- },
1022
- {
1023
- "slug": "raf",
1024
- "name": "RAF Philippines",
1025
- "other_name": "RAF Int'l. Forwarding",
1026
- "required_fields": []
1027
- },
1028
- {
1029
- "slug": "ramgroup-za",
1030
- "name": "RAM",
1031
- "other_name": "RAM Group",
1032
- "required_fields": []
1033
- },
1034
- {
1035
- "slug": "red-express",
1036
- "name": "Red Express",
1037
- "other_name": "Red Express",
1038
- "required_fields": []
1039
- },
1040
- {
1041
- "slug": "red-express-wb",
1042
- "name": "Red Express Waybill",
1043
- "other_name": "Red Express WayBill",
1044
- "required_fields": []
1045
- },
1046
- {
1047
- "slug": "redur-es",
1048
- "name": "Redur Spain",
1049
- "other_name": "Eurodis",
1050
- "required_fields": []
1051
- },
1052
- {
1053
- "slug": "rl-carriers",
1054
- "name": "RL Carriers",
1055
- "other_name": "R+L Carriers",
1056
- "required_fields": []
1057
- },
1058
- {
1059
- "slug": "royal-mail",
1060
- "name": "Royal Mail",
1061
- "other_name": "Royal Mail United Kingdom",
1062
- "required_fields": []
1063
- },
1064
- {
1065
- "slug": "rpx",
1066
- "name": "RPX Indonesia",
1067
- "other_name": "Repex Perdana International",
1068
- "required_fields": []
1069
- },
1070
- {
1071
- "slug": "rpxonline",
1072
- "name": "RPX Online",
1073
- "other_name": "Cathay Pacific",
1074
- "required_fields": []
1075
- },
1076
- {
1077
- "slug": "russian-post",
1078
- "name": "Russian Post",
1079
- "other_name": "Почта России, EMS Post RU",
1080
- "required_fields": []
1081
- },
1082
- {
1083
- "slug": "safexpress",
1084
- "name": "Safexpress",
1085
- "other_name": "Safexpress",
1086
- "required_fields": []
1087
- },
1088
- {
1089
- "slug": "sagawa",
1090
- "name": "Sagawa",
1091
- "other_name": "佐川急便",
1092
- "required_fields": []
1093
- },
1094
- {
1095
- "slug": "sapo",
1096
- "name": "South African Post Office",
1097
- "other_name": "South African Post Office",
1098
- "required_fields": []
1099
- },
1100
- {
1101
- "slug": "saudi-post",
1102
- "name": "Saudi Post",
1103
- "other_name": "البريد السعودي",
1104
- "required_fields": []
1105
- },
1106
- {
1107
- "slug": "sf-express",
1108
- "name": "S.F. Express",
1109
- "other_name": "順豊快遞",
1110
- "required_fields": []
1111
- },
1112
- {
1113
- "slug": "sic-teliway",
1114
- "name": "Teliway SIC Express",
1115
- "other_name": "Prevote",
1116
- "required_fields": [
1117
- "tracking_account_number",
1118
- "tracking_key"
1119
- ]
1120
- },
1121
- {
1122
- "slug": "singapore-post",
1123
- "name": "Singapore Post",
1124
- "other_name": "SingPost",
1125
- "required_fields": []
1126
- },
1127
- {
1128
- "slug": "singapore-speedpost",
1129
- "name": "Singapore Speedpost",
1130
- "other_name": "Singapore EMS",
1131
- "required_fields": []
1132
- },
1133
- {
1134
- "slug": "siodemka",
1135
- "name": "Siodemka",
1136
- "other_name": "Siodemka Kurier",
1137
- "required_fields": []
1138
- },
1139
- {
1140
- "slug": "skynet",
1141
- "name": "SkyNet Malaysia",
1142
- "other_name": "SkyNet MY",
1143
- "required_fields": []
1144
- },
1145
- {
1146
- "slug": "skynetworldwide",
1147
- "name": "SkyNet Worldwide Express",
1148
- "other_name": "Skynetwwe",
1149
- "required_fields": []
1150
- },
1151
- {
1152
- "slug": "skynetworldwide-uk",
1153
- "name": "Skynet Worldwide Express UK",
1154
- "other_name": "Skynet UK",
1155
- "required_fields": []
1156
- },
1157
- {
1158
- "slug": "spain-correos-es",
1159
- "name": "Correos de España",
1160
- "other_name": "Spain Post, ChronoExpress",
1161
- "required_fields": []
1162
- },
1163
- {
1164
- "slug": "spanish-seur",
1165
- "name": "Spanish Seur",
1166
- "other_name": "SEUR",
1167
- "required_fields": []
1168
- },
1169
- {
1170
- "slug": "specialisedfreight-za",
1171
- "name": "Specialised Freight",
1172
- "other_name": "SFS",
1173
- "required_fields": []
1174
- },
1175
- {
1176
- "slug": "speedcouriers-gr",
1177
- "name": "Speed Couriers",
1178
- "other_name": "Speed Couriers",
1179
- "required_fields": []
1180
- },
1181
- {
1182
- "slug": "speedexcourier",
1183
- "name": "Speedex Courier",
1184
- "other_name": "Speedex Courier",
1185
- "required_fields": []
1186
- },
1187
- {
1188
- "slug": "srekorea",
1189
- "name": "SRE Korea",
1190
- "other_name": "SRE 배송서비스",
1191
- "required_fields": []
1192
- },
1193
- {
1194
- "slug": "star-track",
1195
- "name": "StarTrack",
1196
- "other_name": "Star Track",
1197
- "required_fields": []
1198
- },
1199
- {
1200
- "slug": "star-track-express",
1201
- "name": "Star Track Express",
1202
- "other_name": "AaE Australian air Express",
1203
- "required_fields": []
1204
- },
1205
- {
1206
- "slug": "sto",
1207
- "name": "STO Express",
1208
- "other_name": "申通快递, Shentong Express",
1209
- "required_fields": []
1210
- },
1211
- {
1212
- "slug": "sweden-posten",
1213
- "name": "Sweden Posten",
1214
- "other_name": "Sweden Post",
1215
- "required_fields": []
1216
- },
1217
- {
1218
- "slug": "swiss-post",
1219
- "name": "Swiss Post",
1220
- "other_name": "La Poste Suisse, Die Schweizerische Post, Die Post",
1221
- "required_fields": []
1222
- },
1223
- {
1224
- "slug": "szdpex",
1225
- "name": "DPEX China",
1226
- "other_name": "DPEX(深圳)国际物流, Toll China",
1227
- "required_fields": []
1228
- },
1229
- {
1230
- "slug": "taiwan-post",
1231
- "name": "Taiwan Post",
1232
- "other_name": "Chunghwa Post, 台灣中華郵政",
1233
- "required_fields": []
1234
- },
1235
- {
1236
- "slug": "taqbin-hk",
1237
- "name": "TAQBIN Hong Kong",
1238
- "other_name": "Yamat, 雅瑪多運輸- 宅急便",
1239
- "required_fields": []
1240
- },
1241
- {
1242
- "slug": "taqbin-jp",
1243
- "name": "Yamato Japan",
1244
- "other_name": "ヤマト運輸, TAQBIN",
1245
- "required_fields": []
1246
- },
1247
- {
1248
- "slug": "taqbin-my",
1249
- "name": "TAQBIN Malaysia",
1250
- "other_name": "TAQBIN Malaysia",
1251
- "required_fields": []
1252
- },
1253
- {
1254
- "slug": "taqbin-sg",
1255
- "name": "TAQBIN Singapore",
1256
- "other_name": "Yamato Singapore",
1257
- "required_fields": []
1258
- },
1259
- {
1260
- "slug": "taxydromiki",
1261
- "name": "Geniki Taxydromiki",
1262
- "other_name": "ΓΕΝΙΚΗ ΤΑΧΥΔΡΟΜΙΚΗ",
1263
- "required_fields": []
1264
- },
1265
- {
1266
- "slug": "tgx",
1267
- "name": "TGX",
1268
- "other_name": "Top Gun Express, 精英速運",
1269
- "required_fields": []
1270
- },
1271
- {
1272
- "slug": "thailand-post",
1273
- "name": "Thailand Thai Post",
1274
- "other_name": "ไปรษณีย์ไทย",
1275
- "required_fields": []
1276
- },
1277
- {
1278
- "slug": "tiki",
1279
- "name": "Tiki",
1280
- "other_name": "Citra Van Titipan Kilat",
1281
- "required_fields": []
1282
- },
1283
- {
1284
- "slug": "tnt",
1285
- "name": "TNT",
1286
- "other_name": "TNT Express",
1287
- "required_fields": []
1288
- },
1289
- {
1290
- "slug": "tnt-au",
1291
- "name": "TNT Australia",
1292
- "other_name": "TNT AU",
1293
- "required_fields": []
1294
- },
1295
- {
1296
- "slug": "tnt-click",
1297
- "name": "TNT-Click Italy",
1298
- "other_name": "TNT Italy",
1299
- "required_fields": []
1300
- },
1301
- {
1302
- "slug": "tnt-fr",
1303
- "name": "TNT France",
1304
- "other_name": "TNT Express FR",
1305
- "required_fields": []
1306
- },
1307
- {
1308
- "slug": "tnt-it",
1309
- "name": "TNT Italy",
1310
- "other_name": "TNT Express IT",
1311
- "required_fields": []
1312
- },
1313
- {
1314
- "slug": "tnt-uk",
1315
- "name": "TNT UK",
1316
- "other_name": "TNT United Kingdom",
1317
- "required_fields": []
1318
- },
1319
- {
1320
- "slug": "tntpost-it",
1321
- "name": "Nexive (TNT Post Italy)",
1322
- "other_name": "Postnl TNT",
1323
- "required_fields": []
1324
- },
1325
- {
1326
- "slug": "toll-global-express",
1327
- "name": "Toll Global Express",
1328
- "other_name": "DPEX",
1329
- "required_fields": []
1330
- },
1331
- {
1332
- "slug": "toll-ipec",
1333
- "name": "Toll IPEC",
1334
- "other_name": "Toll Express",
1335
- "required_fields": []
1336
- },
1337
- {
1338
- "slug": "toll-priority",
1339
- "name": "Toll Priority",
1340
- "other_name": "Toll Group, Toll Priority",
1341
- "required_fields": []
1342
- },
1343
- {
1344
- "slug": "trakpak",
1345
- "name": "TrakPak",
1346
- "other_name": "bpost international P2P Mailing Trak Pak",
1347
- "required_fields": []
1348
- },
1349
- {
1350
- "slug": "transmission-nl",
1351
- "name": "TransMission",
1352
- "other_name": "mijnzending",
1353
- "required_fields": [
1354
- "tracking_postal_code"
1355
- ]
1356
- },
1357
- {
1358
- "slug": "uk-mail",
1359
- "name": "UK Mail",
1360
- "other_name": "Business Post Group",
1361
- "required_fields": []
1362
- },
1363
- {
1364
- "slug": "ukrposhta",
1365
- "name": "UkrPoshta",
1366
- "other_name": "Укрпошта",
1367
- "required_fields": []
1368
- },
1369
- {
1370
- "slug": "ups",
1371
- "name": "UPS",
1372
- "other_name": "United Parcel Service",
1373
- "required_fields": []
1374
- },
1375
- {
1376
- "slug": "ups-freight",
1377
- "name": "UPS Freight",
1378
- "other_name": "UPS LTL and Truckload",
1379
- "required_fields": []
1380
- },
1381
- {
1382
- "slug": "ups-mi",
1383
- "name": "UPS Mail Innovations",
1384
- "other_name": "UPS MI",
1385
- "required_fields": []
1386
- },
1387
- {
1388
- "slug": "usps",
1389
- "name": "USPS",
1390
- "other_name": "United States Postal Service",
1391
- "required_fields": []
1392
- },
1393
- {
1394
- "slug": "viettelpost",
1395
- "name": "ViettelPost",
1396
- "other_name": "Bưu chính Viettel",
1397
- "required_fields": []
1398
- },
1399
- {
1400
- "slug": "vnpost",
1401
- "name": "Vietnam Post",
1402
- "other_name": "VNPost",
1403
- "required_fields": []
1404
- },
1405
- {
1406
- "slug": "vnpost-ems",
1407
- "name": "Vietnam Post EMS",
1408
- "other_name": "VNPost EMS",
1409
- "required_fields": []
1410
- },
1411
- {
1412
- "slug": "wahana",
1413
- "name": "Wahana",
1414
- "other_name": "Wahana Indonesia",
1415
- "required_fields": []
1416
- },
1417
- {
1418
- "slug": "wedo",
1419
- "name": "WeDo Logistics",
1420
- "other_name": "運德物流",
1421
- "required_fields": []
1422
- },
1423
- {
1424
- "slug": "wishpost",
1425
- "name": "WishPost",
1426
- "other_name": "Wish",
1427
- "required_fields": []
1428
- },
1429
- {
1430
- "slug": "xdp-uk",
1431
- "name": "XDP Express",
1432
- "other_name": "XDP UK",
1433
- "required_fields": [
1434
- "tracking_postal_code"
1435
- ]
1436
- },
1437
- {
1438
- "slug": "xend",
1439
- "name": "Xend",
1440
- "other_name": "Xend Business Solutions",
1441
- "required_fields": []
1442
- },
1443
- {
1444
- "slug": "xpressbees",
1445
- "name": "XpressBees",
1446
- "other_name": "XpressBees logistics",
1447
- "required_fields": []
1448
- },
1449
- {
1450
- "slug": "yanwen",
1451
- "name": "Yanwen",
1452
- "other_name": "燕文物流",
1453
- "required_fields": []
1454
- },
1455
- {
1456
- "slug": "yodel",
1457
- "name": "Yodel Domestic",
1458
- "other_name": "Home Delivery Network Limited (HDNL)",
1459
- "required_fields": []
1460
- },
1461
- {
1462
- "slug": "yodel-international",
1463
- "name": "Yodel International",
1464
- "other_name": "Home Delivery Network, HDNL",
1465
- "required_fields": []
1466
- },
1467
- {
1468
- "slug": "yrc",
1469
- "name": "YRC",
1470
- "other_name": "YRC Freight",
1471
- "required_fields": []
1472
- },
1473
- {
1474
- "slug": "yundaex",
1475
- "name": "Yunda Express",
1476
- "other_name": "韵达快递",
1477
- "required_fields": []
1478
- }
1479
- ];
1480
- return data;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1481
  }
1482
 
1
  function get_couriers() {
2
+ var data = [
3
+ {
4
+ "slug": "17postservice",
5
+ "name": "17 Post Service",
6
+ "other_name": "17PostService",
7
+ "required_fields": []
8
+ },
9
+ {
10
+ "slug": "2go",
11
+ "name": "2GO",
12
+ "other_name": "Negros Navigation",
13
+ "required_fields": []
14
+ },
15
+ {
16
+ "slug": "4px",
17
+ "name": "4PX",
18
+ "other_name": "递四方",
19
+ "required_fields": []
20
+ },
21
+ {
22
+ "slug": "4squaregroup",
23
+ "name": "4Square Group",
24
+ "other_name": "4 Square",
25
+ "required_fields": []
26
+ },
27
+ {
28
+ "slug": "800bestex",
29
+ "name": "Best Express",
30
+ "other_name": "百世汇通",
31
+ "required_fields": []
32
+ },
33
+ {
34
+ "slug": "abf",
35
+ "name": "ABF Freight",
36
+ "other_name": "Arkansas Best Corporation",
37
+ "required_fields": []
38
+ },
39
+ {
40
+ "slug": "acscourier",
41
+ "name": "ACS Courier",
42
+ "other_name": "Αναζήτηση Καταστημάτων",
43
+ "required_fields": []
44
+ },
45
+ {
46
+ "slug": "aeroflash",
47
+ "name": "Mexico AeroFlash",
48
+ "other_name": "AeroFlash",
49
+ "required_fields": []
50
+ },
51
+ {
52
+ "slug": "air21",
53
+ "name": "AIR21",
54
+ "other_name": "AIR 21 PH",
55
+ "required_fields": []
56
+ },
57
+ {
58
+ "slug": "an-post",
59
+ "name": "An Post",
60
+ "other_name": "Ireland Post",
61
+ "required_fields": []
62
+ },
63
+ {
64
+ "slug": "apc",
65
+ "name": "APC Postal Logistics",
66
+ "other_name": "APC-PLI",
67
+ "required_fields": []
68
+ },
69
+ {
70
+ "slug": "aramex",
71
+ "name": "Aramex",
72
+ "other_name": "ارامكس",
73
+ "required_fields": []
74
+ },
75
+ {
76
+ "slug": "arrowxl",
77
+ "name": "Arrow XL",
78
+ "other_name": "Yodel XL",
79
+ "required_fields": [
80
+ "tracking_postal_code"
81
+ ]
82
+ },
83
+ {
84
+ "slug": "asendia-de",
85
+ "name": "Asendia Germany",
86
+ "other_name": "Asendia De",
87
+ "required_fields": []
88
+ },
89
+ {
90
+ "slug": "asendia-uk",
91
+ "name": "Asendia",
92
+ "other_name": "",
93
+ "required_fields": []
94
+ },
95
+ {
96
+ "slug": "asendia-usa",
97
+ "name": "Asendia USA",
98
+ "other_name": "Brokers Worldwide",
99
+ "required_fields": []
100
+ },
101
+ {
102
+ "slug": "asm",
103
+ "name": "ASM",
104
+ "other_name": "Asm-Red",
105
+ "required_fields": [
106
+ "tracking_postal_code"
107
+ ]
108
+ },
109
+ {
110
+ "slug": "aupost-china",
111
+ "name": "AuPost China",
112
+ "other_name": "澳邮宝",
113
+ "required_fields": []
114
+ },
115
+ {
116
+ "slug": "australia-post",
117
+ "name": "Australia Post",
118
+ "other_name": "AusPost",
119
+ "required_fields": []
120
+ },
121
+ {
122
+ "slug": "austrian-post",
123
+ "name": "Austrian Post (Express)",
124
+ "other_name": "Österreichische Post AG",
125
+ "required_fields": []
126
+ },
127
+ {
128
+ "slug": "austrian-post-registered",
129
+ "name": "Austrian Post (Registered)",
130
+ "other_name": "Österreichische Post AG",
131
+ "required_fields": []
132
+ },
133
+ {
134
+ "slug": "belpost",
135
+ "name": "Belpost",
136
+ "other_name": "Belposhta, Белпочта",
137
+ "required_fields": []
138
+ },
139
+ {
140
+ "slug": "bgpost",
141
+ "name": "Bulgarian Posts",
142
+ "other_name": "Български пощи",
143
+ "required_fields": []
144
+ },
145
+ {
146
+ "slug": "bluedart",
147
+ "name": "Bluedart",
148
+ "other_name": "Blue Dart Express",
149
+ "required_fields": []
150
+ },
151
+ {
152
+ "slug": "boxc",
153
+ "name": "BOXC",
154
+ "other_name": "BOXC快遞",
155
+ "required_fields": []
156
+ },
157
+ {
158
+ "slug": "bpost",
159
+ "name": "Belgium Post",
160
+ "other_name": "bpost, Belgian Post",
161
+ "required_fields": []
162
+ },
163
+ {
164
+ "slug": "bpost-international",
165
+ "name": "bpost international",
166
+ "other_name": "Belgium Post International, Minipak DDU",
167
+ "required_fields": []
168
+ },
169
+ {
170
+ "slug": "brazil-correios",
171
+ "name": "Brazil Correios",
172
+ "other_name": "Brazilian Post",
173
+ "required_fields": []
174
+ },
175
+ {
176
+ "slug": "brt-it",
177
+ "name": "BRT Bartolini",
178
+ "other_name": "BRT Corriere Espresso, DPD Italy",
179
+ "required_fields": []
180
+ },
181
+ {
182
+ "slug": "cambodia-post",
183
+ "name": "Cambodia Post",
184
+ "other_name": "Cambodia Post",
185
+ "required_fields": []
186
+ },
187
+ {
188
+ "slug": "canada-post",
189
+ "name": "Canada Post",
190
+ "other_name": "Postes Canada",
191
+ "required_fields": []
192
+ },
193
+ {
194
+ "slug": "canpar",
195
+ "name": "Canpar Courier",
196
+ "other_name": "TransForce",
197
+ "required_fields": []
198
+ },
199
+ {
200
+ "slug": "ceska-posta",
201
+ "name": "Česká Pošta",
202
+ "other_name": "Czech Post",
203
+ "required_fields": []
204
+ },
205
+ {
206
+ "slug": "china-ems",
207
+ "name": "China EMS",
208
+ "other_name": "中国邮政速递物流",
209
+ "required_fields": []
210
+ },
211
+ {
212
+ "slug": "china-post",
213
+ "name": "China Post",
214
+ "other_name": "中国邮政, ePacket, e-Packet",
215
+ "required_fields": []
216
+ },
217
+ {
218
+ "slug": "chronopost-france",
219
+ "name": "Chronopost France",
220
+ "other_name": "La Poste EMS",
221
+ "required_fields": []
222
+ },
223
+ {
224
+ "slug": "chronopost-portugal",
225
+ "name": "Chronopost Portugal",
226
+ "other_name": "Chronopost pt",
227
+ "required_fields": []
228
+ },
229
+ {
230
+ "slug": "city-link",
231
+ "name": "City Link",
232
+ "other_name": "City Link UK",
233
+ "required_fields": []
234
+ },
235
+ {
236
+ "slug": "city-link-international",
237
+ "name": "City Link International",
238
+ "other_name": "citylink.norsknet.com",
239
+ "required_fields": []
240
+ },
241
+ {
242
+ "slug": "citylinkexpress",
243
+ "name": "City-Link Express",
244
+ "other_name": "Citylink Malaysia",
245
+ "required_fields": []
246
+ },
247
+ {
248
+ "slug": "cj-gls",
249
+ "name": "CJ GLS",
250
+ "other_name": "CJ Korea Express, 씨제이지엘에스주식회사",
251
+ "required_fields": []
252
+ },
253
+ {
254
+ "slug": "cnexps",
255
+ "name": "CNE Express",
256
+ "other_name": "国际快递",
257
+ "required_fields": []
258
+ },
259
+ {
260
+ "slug": "colis-prive",
261
+ "name": "Colis Privé",
262
+ "other_name": "ColisPrivé",
263
+ "required_fields": []
264
+ },
265
+ {
266
+ "slug": "colissimo",
267
+ "name": "Colissimo",
268
+ "other_name": "Colissimo fr",
269
+ "required_fields": []
270
+ },
271
+ {
272
+ "slug": "collectplus",
273
+ "name": "Collect+",
274
+ "other_name": "Collect Plus UK",
275
+ "required_fields": []
276
+ },
277
+ {
278
+ "slug": "correo-argentino",
279
+ "name": "Correo Argentino",
280
+ "other_name": "Argentina Post",
281
+ "required_fields": []
282
+ },
283
+ {
284
+ "slug": "correos-chile",
285
+ "name": "Correos Chile",
286
+ "other_name": "Chile Post",
287
+ "required_fields": []
288
+ },
289
+ {
290
+ "slug": "correos-de-mexico",
291
+ "name": "Correos de Mexico",
292
+ "other_name": "Mexico Post",
293
+ "required_fields": []
294
+ },
295
+ {
296
+ "slug": "correosexpress",
297
+ "name": "Correos Express",
298
+ "other_name": "",
299
+ "required_fields": [
300
+ "tracking_postal_code"
301
+ ]
302
+ },
303
+ {
304
+ "slug": "courier-plus",
305
+ "name": "Courier Plus",
306
+ "other_name": "Courier Plus",
307
+ "required_fields": []
308
+ },
309
+ {
310
+ "slug": "courierit",
311
+ "name": "Courier IT",
312
+ "other_name": "Courierit",
313
+ "required_fields": []
314
+ },
315
+ {
316
+ "slug": "courierpost",
317
+ "name": "CourierPost",
318
+ "other_name": "Express Couriers",
319
+ "required_fields": []
320
+ },
321
+ {
322
+ "slug": "couriers-please",
323
+ "name": "Couriers Please",
324
+ "other_name": "CouriersPlease",
325
+ "required_fields": []
326
+ },
327
+ {
328
+ "slug": "cyprus-post",
329
+ "name": "Cyprus Post",
330
+ "other_name": "ΚΥΠΡΙΑΚΑ ΤΑΧΥΔΡΟΜΕΙΑ",
331
+ "required_fields": []
332
+ },
333
+ {
334
+ "slug": "danmark-post",
335
+ "name": "Post Danmark",
336
+ "other_name": "Danske Post",
337
+ "required_fields": []
338
+ },
339
+ {
340
+ "slug": "dbschenker-se",
341
+ "name": "DB Schenker Sweden",
342
+ "other_name": "Deutsche Bahn",
343
+ "required_fields": []
344
+ },
345
+ {
346
+ "slug": "delhivery",
347
+ "name": "Delhivery",
348
+ "other_name": "Gharpay",
349
+ "required_fields": []
350
+ },
351
+ {
352
+ "slug": "deltec-courier",
353
+ "name": "Deltec Courier",
354
+ "other_name": "Deltec Interntional Courier",
355
+ "required_fields": []
356
+ },
357
+ {
358
+ "slug": "deutsch-post",
359
+ "name": "Deutsche Post Mail",
360
+ "other_name": "dpdhl",
361
+ "required_fields": [
362
+ "tracking_ship_date"
363
+ ]
364
+ },
365
+ {
366
+ "slug": "dhl",
367
+ "name": "DHL Express",
368
+ "other_name": "DHL International",
369
+ "required_fields": []
370
+ },
371
+ {
372
+ "slug": "dhl-benelux",
373
+ "name": "DHL Benelux",
374
+ "other_name": "DHL TrackNet Benelux",
375
+ "required_fields": []
376
+ },
377
+ {
378
+ "slug": "dhl-deliverit",
379
+ "name": "DHL 2-Mann-Handling",
380
+ "other_name": "DHL Deliver IT",
381
+ "required_fields": [
382
+ "tracking_postal_code"
383
+ ]
384
+ },
385
+ {
386
+ "slug": "dhl-es",
387
+ "name": "DHL Spain Domestic",
388
+ "other_name": "DHL España",
389
+ "required_fields": []
390
+ },
391
+ {
392
+ "slug": "dhl-germany",
393
+ "name": "Deutsche Post DHL",
394
+ "other_name": "DHL Germany",
395
+ "required_fields": []
396
+ },
397
+ {
398
+ "slug": "dhl-global-mail",
399
+ "name": "DHL eCommerce",
400
+ "other_name": "DHL Global Mail",
401
+ "required_fields": []
402
+ },
403
+ {
404
+ "slug": "dhl-global-mail-asia",
405
+ "name": "DHL Global Mail Asia",
406
+ "other_name": "DGM Asia",
407
+ "required_fields": []
408
+ },
409
+ {
410
+ "slug": "dhl-nl",
411
+ "name": "DHL Netherlands",
412
+ "other_name": "DHL Nederlands",
413
+ "required_fields": []
414
+ },
415
+ {
416
+ "slug": "dhl-pieceid",
417
+ "name": "DHL Express (Piece ID)",
418
+ "other_name": "DHL International",
419
+ "required_fields": []
420
+ },
421
+ {
422
+ "slug": "dhl-poland",
423
+ "name": "DHL Poland Domestic",
424
+ "other_name": "DHL Polska",
425
+ "required_fields": []
426
+ },
427
+ {
428
+ "slug": "dhlparcel-nl",
429
+ "name": "DHL Parcel NL",
430
+ "other_name": "Selektvracht, dhlparcel.nl",
431
+ "required_fields": []
432
+ },
433
+ {
434
+ "slug": "directlink",
435
+ "name": "Direct Link",
436
+ "other_name": "Direct Link",
437
+ "required_fields": []
438
+ },
439
+ {
440
+ "slug": "dmm-network",
441
+ "name": "DMM Network",
442
+ "other_name": "dmmnetwork.it",
443
+ "required_fields": []
444
+ },
445
+ {
446
+ "slug": "dotzot",
447
+ "name": "Dotzot",
448
+ "other_name": "Dotzot",
449
+ "required_fields": []
450
+ },
451
+ {
452
+ "slug": "dpd",
453
+ "name": "DPD",
454
+ "other_name": "Dynamic Parcel Distribution",
455
+ "required_fields": []
456
+ },
457
+ {
458
+ "slug": "dpd-de",
459
+ "name": "DPD Germany",
460
+ "other_name": "DPD Germany",
461
+ "required_fields": []
462
+ },
463
+ {
464
+ "slug": "dpd-ireland",
465
+ "name": "DPD Ireland",
466
+ "other_name": "DPD ie",
467
+ "required_fields": []
468
+ },
469
+ {
470
+ "slug": "dpd-poland",
471
+ "name": "DPD Poland",
472
+ "other_name": "Dynamic Parcel Distribution Poland",
473
+ "required_fields": []
474
+ },
475
+ {
476
+ "slug": "dpd-uk",
477
+ "name": "DPD UK",
478
+ "other_name": "Dynamic Parcel Distribution UK",
479
+ "required_fields": []
480
+ },
481
+ {
482
+ "slug": "dpe-za",
483
+ "name": "DPE South Africa",
484
+ "other_name": "DPE Worldwide Express",
485
+ "required_fields": []
486
+ },
487
+ {
488
+ "slug": "dsv",
489
+ "name": "DSV",
490
+ "other_name": "",
491
+ "required_fields": []
492
+ },
493
+ {
494
+ "slug": "dtdc",
495
+ "name": "DTDC India",
496
+ "other_name": "DTDC Courier & Cargo",
497
+ "required_fields": []
498
+ },
499
+ {
500
+ "slug": "dynamic-logistics",
501
+ "name": "Dynamic Logistics",
502
+ "other_name": "Dynamic Logistics Thailand",
503
+ "required_fields": [
504
+ "tracking_account_number"
505
+ ]
506
+ },
507
+ {
508
+ "slug": "ec-firstclass",
509
+ "name": "EC-Firstclass",
510
+ "other_name": "ChuKou1, CK1",
511
+ "required_fields": []
512
+ },
513
+ {
514
+ "slug": "ecargo-asia",
515
+ "name": "Ecargo",
516
+ "other_name": "Ecargo Pte. Ltd",
517
+ "required_fields": []
518
+ },
519
+ {
520
+ "slug": "ecom-express",
521
+ "name": "Ecom Express",
522
+ "other_name": "EcomExpress",
523
+ "required_fields": []
524
+ },
525
+ {
526
+ "slug": "elta-courier",
527
+ "name": "ELTA Hellenic Post",
528
+ "other_name": "Greece Post, Ελληνικά Ταχυδρομεία, ELTA Courier, Ταχυμεταφορές ΕΛΤΑ",
529
+ "required_fields": []
530
+ },
531
+ {
532
+ "slug": "emirates-post",
533
+ "name": "Emirates Post",
534
+ "other_name": "مجموعة بريد الإمارات, UAE Post",
535
+ "required_fields": []
536
+ },
537
+ {
538
+ "slug": "empsexpress",
539
+ "name": "EMPS Express",
540
+ "other_name": "Shenzhen Express Mail & Parcel Service Freight Forwarding Co.,",
541
+ "required_fields": []
542
+ },
543
+ {
544
+ "slug": "envialia",
545
+ "name": "Envialia",
546
+ "other_name": "Envialia Spain",
547
+ "required_fields": []
548
+ },
549
+ {
550
+ "slug": "equick-cn",
551
+ "name": "Equick China",
552
+ "other_name": "北京网易速达",
553
+ "required_fields": []
554
+ },
555
+ {
556
+ "slug": "estafeta",
557
+ "name": "Estafeta",
558
+ "other_name": "Estafeta Mexicana",
559
+ "required_fields": []
560
+ },
561
+ {
562
+ "slug": "estes",
563
+ "name": "Estes",
564
+ "other_name": "Estes Express Lines",
565
+ "required_fields": []
566
+ },
567
+ {
568
+ "slug": "exapaq",
569
+ "name": "Exapaq",
570
+ "other_name": "DPD France",
571
+ "required_fields": []
572
+ },
573
+ {
574
+ "slug": "fastway-au",
575
+ "name": "Fastway Australia",
576
+ "other_name": "Fastway Couriers",
577
+ "required_fields": []
578
+ },
579
+ {
580
+ "slug": "fastway-ireland",
581
+ "name": "Fastway Ireland",
582
+ "other_name": "Fastway Couriers",
583
+ "required_fields": []
584
+ },
585
+ {
586
+ "slug": "fastway-za",
587
+ "name": "Fastway South Africa",
588
+ "other_name": "Fastway Couriers",
589
+ "required_fields": []
590
+ },
591
+ {
592
+ "slug": "fedex",
593
+ "name": "FedEx",
594
+ "other_name": "Federal Express",
595
+ "required_fields": []
596
+ },
597
+ {
598
+ "slug": "fedex-uk",
599
+ "name": "FedEx UK",
600
+ "other_name": "FedEx United Kingdom",
601
+ "required_fields": []
602
+ },
603
+ {
604
+ "slug": "fercam",
605
+ "name": "FERCAM Logistics & Transport",
606
+ "other_name": "FERCAM SpA",
607
+ "required_fields": []
608
+ },
609
+ {
610
+ "slug": "first-flight",
611
+ "name": "First Flight Couriers",
612
+ "other_name": "FirstFlight India",
613
+ "required_fields": []
614
+ },
615
+ {
616
+ "slug": "first-logistics",
617
+ "name": "First Logistics",
618
+ "other_name": "PT Synergy First Logistics",
619
+ "required_fields": []
620
+ },
621
+ {
622
+ "slug": "flytexpress",
623
+ "name": "Flyt Express",
624
+ "other_name": "飞特物流",
625
+ "required_fields": []
626
+ },
627
+ {
628
+ "slug": "gati-kwe",
629
+ "name": "Gati-KWE",
630
+ "other_name": "Gati-Kintetsu Express",
631
+ "required_fields": []
632
+ },
633
+ {
634
+ "slug": "gdex",
635
+ "name": "GDEX",
636
+ "other_name": "GD Express",
637
+ "required_fields": []
638
+ },
639
+ {
640
+ "slug": "geodis-calberson-fr",
641
+ "name": "Geodis Calberson France",
642
+ "other_name": "Geodiscalberson",
643
+ "required_fields": [
644
+ "tracking_postal_code"
645
+ ]
646
+ },
647
+ {
648
+ "slug": "ghn",
649
+ "name": "Giao hàng nhanh",
650
+ "other_name": "Giaohangnhanh.vn, GHN",
651
+ "required_fields": []
652
+ },
653
+ {
654
+ "slug": "gls",
655
+ "name": "GLS",
656
+ "other_name": "General Logistics Systems",
657
+ "required_fields": []
658
+ },
659
+ {
660
+ "slug": "gls-italy",
661
+ "name": "GLS Italy",
662
+ "other_name": "GLS Corriere Espresso",
663
+ "required_fields": []
664
+ },
665
+ {
666
+ "slug": "gls-netherlands",
667
+ "name": "GLS Netherlands",
668
+ "other_name": "GLS NL",
669
+ "required_fields": [
670
+ "tracking_postal_code"
671
+ ]
672
+ },
673
+ {
674
+ "slug": "gojavas",
675
+ "name": "GoJaVAS",
676
+ "other_name": "JaVAS",
677
+ "required_fields": []
678
+ },
679
+ {
680
+ "slug": "greyhound",
681
+ "name": "Greyhound",
682
+ "other_name": "Greyhound Package Express",
683
+ "required_fields": []
684
+ },
685
+ {
686
+ "slug": "hermes",
687
+ "name": "Hermesworld",
688
+ "other_name": "Hermes-europe UK",
689
+ "required_fields": []
690
+ },
691
+ {
692
+ "slug": "hermes-de",
693
+ "name": "Hermes Germany",
694
+ "other_name": "myhermes.de, Hermes Logistik Gruppe Deutschland",
695
+ "required_fields": []
696
+ },
697
+ {
698
+ "slug": "hong-kong-post",
699
+ "name": "Hong Kong Post",
700
+ "other_name": "香港郵政",
701
+ "required_fields": []
702
+ },
703
+ {
704
+ "slug": "hrvatska-posta",
705
+ "name": "Hrvatska Pošta",
706
+ "other_name": "Croatia Post",
707
+ "required_fields": []
708
+ },
709
+ {
710
+ "slug": "i-parcel",
711
+ "name": "i-parcel",
712
+ "other_name": "iparcel",
713
+ "required_fields": []
714
+ },
715
+ {
716
+ "slug": "india-post",
717
+ "name": "India Post Domestic",
718
+ "other_name": "भारतीय डाक",
719
+ "required_fields": []
720
+ },
721
+ {
722
+ "slug": "india-post-int",
723
+ "name": "India Post International",
724
+ "other_name": "भारतीय डाक, Speed Post & eMO, EMS, IPS Web",
725
+ "required_fields": []
726
+ },
727
+ {
728
+ "slug": "interlink-express",
729
+ "name": "Interlink Express",
730
+ "other_name": "Interlink UK",
731
+ "required_fields": []
732
+ },
733
+ {
734
+ "slug": "international-seur",
735
+ "name": "International Seur",
736
+ "other_name": "SEUR Internacional",
737
+ "required_fields": []
738
+ },
739
+ {
740
+ "slug": "israel-post",
741
+ "name": "Israel Post",
742
+ "other_name": "חברת דואר ישראל",
743
+ "required_fields": []
744
+ },
745
+ {
746
+ "slug": "israel-post-domestic",
747
+ "name": "Israel Post Domestic",
748
+ "other_name": "חברת דואר ישראל מקומית",
749
+ "required_fields": []
750
+ },
751
+ {
752
+ "slug": "italy-sda",
753
+ "name": "Italy SDA",
754
+ "other_name": "SDA Express Courier",
755
+ "required_fields": []
756
+ },
757
+ {
758
+ "slug": "jam-express",
759
+ "name": "Jam Express",
760
+ "other_name": "JAM Global Express",
761
+ "required_fields": []
762
+ },
763
+ {
764
+ "slug": "japan-post",
765
+ "name": "Japan Post",
766
+ "other_name": "日本郵便",
767
+ "required_fields": []
768
+ },
769
+ {
770
+ "slug": "jcex",
771
+ "name": "JCEX",
772
+ "other_name": "JiaCheng, 杭州佳成",
773
+ "required_fields": []
774
+ },
775
+ {
776
+ "slug": "jne",
777
+ "name": "JNE",
778
+ "other_name": "Express Across Nation, Tiki Jalur Nugraha Ekakurir",
779
+ "required_fields": []
780
+ },
781
+ {
782
+ "slug": "kerry-logistics",
783
+ "name": "Kerry Express Thailand",
784
+ "other_name": "嘉里物流, Kerry Logistics",
785
+ "required_fields": []
786
+ },
787
+ {
788
+ "slug": "kn",
789
+ "name": "Kuehne + Nagel",
790
+ "other_name": "KN",
791
+ "required_fields": []
792
+ },
793
+ {
794
+ "slug": "korea-post",
795
+ "name": "Korea Post",
796
+ "other_name": "우정사업본부",
797
+ "required_fields": []
798
+ },
799
+ {
800
+ "slug": "la-poste-colissimo",
801
+ "name": "La Poste",
802
+ "other_name": "Coliposte",
803
+ "required_fields": []
804
+ },
805
+ {
806
+ "slug": "lasership",
807
+ "name": "LaserShip",
808
+ "other_name": "LaserShip",
809
+ "required_fields": []
810
+ },
811
+ {
812
+ "slug": "lbcexpress",
813
+ "name": "LBC Express",
814
+ "other_name": "LBC Express",
815
+ "required_fields": []
816
+ },
817
+ {
818
+ "slug": "lietuvos-pastas",
819
+ "name": "Lietuvos paštas",
820
+ "other_name": "Lithuania Post, LP Express",
821
+ "required_fields": []
822
+ },
823
+ {
824
+ "slug": "magyar-posta",
825
+ "name": "Magyar Posta",
826
+ "other_name": "Hungarian Post",
827
+ "required_fields": []
828
+ },
829
+ {
830
+ "slug": "malaysia-post",
831
+ "name": "Malaysia Post EMS / Poslaju",
832
+ "other_name": "Pos Ekspres, Pos Malaysia Express",
833
+ "required_fields": []
834
+ },
835
+ {
836
+ "slug": "malaysia-post-posdaftar",
837
+ "name": "Malaysia Post - Registered",
838
+ "other_name": "PosDaftar",
839
+ "required_fields": []
840
+ },
841
+ {
842
+ "slug": "mexico-redpack",
843
+ "name": "Mexico Redpack",
844
+ "other_name": "TNT Mexico",
845
+ "required_fields": []
846
+ },
847
+ {
848
+ "slug": "mexico-senda-express",
849
+ "name": "Mexico Senda Express",
850
+ "other_name": "Mexico Senda Express",
851
+ "required_fields": []
852
+ },
853
+ {
854
+ "slug": "mrw-spain",
855
+ "name": "MRW",
856
+ "other_name": "MRW Spain",
857
+ "required_fields": []
858
+ },
859
+ {
860
+ "slug": "myhermes-uk",
861
+ "name": "myHermes UK",
862
+ "other_name": "",
863
+ "required_fields": []
864
+ },
865
+ {
866
+ "slug": "mypostonline",
867
+ "name": "Mypostonline",
868
+ "other_name": "MYBOXPOST",
869
+ "required_fields": []
870
+ },
871
+ {
872
+ "slug": "nacex-spain",
873
+ "name": "NACEX Spain",
874
+ "other_name": "NACEX Logista",
875
+ "required_fields": [
876
+ "tracking_postal_code"
877
+ ]
878
+ },
879
+ {
880
+ "slug": "new-zealand-post",
881
+ "name": "New Zealand Post",
882
+ "other_name": "NZ Post",
883
+ "required_fields": []
884
+ },
885
+ {
886
+ "slug": "nipost",
887
+ "name": "NiPost",
888
+ "other_name": "Nigerian Postal Service",
889
+ "required_fields": []
890
+ },
891
+ {
892
+ "slug": "nova-poshta",
893
+ "name": "Nova Poshta",
894
+ "other_name": "Новая Почта",
895
+ "required_fields": []
896
+ },
897
+ {
898
+ "slug": "oca-ar",
899
+ "name": "OCA Argentina",
900
+ "other_name": "OCA e-Pak",
901
+ "required_fields": []
902
+ },
903
+ {
904
+ "slug": "ontrac",
905
+ "name": "OnTrac",
906
+ "other_name": "OnTrac Shipping",
907
+ "required_fields": []
908
+ },
909
+ {
910
+ "slug": "opek",
911
+ "name": "FedEx Poland Domestic",
912
+ "other_name": "OPEK",
913
+ "required_fields": []
914
+ },
915
+ {
916
+ "slug": "packlink",
917
+ "name": "Packlink",
918
+ "other_name": "Packlink Spain",
919
+ "required_fields": []
920
+ },
921
+ {
922
+ "slug": "pandulogistics",
923
+ "name": "Pandu Logistics",
924
+ "other_name": "",
925
+ "required_fields": []
926
+ },
927
+ {
928
+ "slug": "panther",
929
+ "name": "Panther",
930
+ "other_name": "Panther Group UK",
931
+ "required_fields": [
932
+ "tracking_account_number"
933
+ ]
934
+ },
935
+ {
936
+ "slug": "parcel-force",
937
+ "name": "Parcel Force",
938
+ "other_name": "Parcelforce UK",
939
+ "required_fields": []
940
+ },
941
+ {
942
+ "slug": "poczta-polska",
943
+ "name": "Poczta Polska",
944
+ "other_name": "Poland Post",
945
+ "required_fields": []
946
+ },
947
+ {
948
+ "slug": "portugal-ctt",
949
+ "name": "Portugal CTT",
950
+ "other_name": "Correios de Portugal",
951
+ "required_fields": []
952
+ },
953
+ {
954
+ "slug": "portugal-seur",
955
+ "name": "Portugal Seur",
956
+ "other_name": "SEUR",
957
+ "required_fields": []
958
+ },
959
+ {
960
+ "slug": "pos-indonesia",
961
+ "name": "Pos Indonesia Domestic",
962
+ "other_name": "Indonesian Post Domestic",
963
+ "required_fields": []
964
+ },
965
+ {
966
+ "slug": "pos-indonesia-int",
967
+ "name": "Pos Indonesia Int'l",
968
+ "other_name": "Indonesian Post International EMS",
969
+ "required_fields": []
970
+ },
971
+ {
972
+ "slug": "post56",
973
+ "name": "Post56",
974
+ "other_name": "捷邮快递",
975
+ "required_fields": []
976
+ },
977
+ {
978
+ "slug": "posta-romana",
979
+ "name": "Poșta Română",
980
+ "other_name": "Romania Post",
981
+ "required_fields": []
982
+ },
983
+ {
984
+ "slug": "poste-italiane",
985
+ "name": "Poste Italiane",
986
+ "other_name": "Italian Post",
987
+ "required_fields": []
988
+ },
989
+ {
990
+ "slug": "poste-italiane-paccocelere",
991
+ "name": "Poste Italiane Paccocelere",
992
+ "other_name": "Italian Post EMS / Express",
993
+ "required_fields": []
994
+ },
995
+ {
996
+ "slug": "posten-norge",
997
+ "name": "Posten Norge / Bring",
998
+ "other_name": "Norway Post, Norska Posten",
999
+ "required_fields": []
1000
+ },
1001
+ {
1002
+ "slug": "posti",
1003
+ "name": "Itella Posti",
1004
+ "other_name": "Finland Post",
1005
+ "required_fields": []
1006
+ },
1007
+ {
1008
+ "slug": "postnl",
1009
+ "name": "PostNL Domestic",
1010
+ "other_name": "PostNL Pakketten, TNT Post Netherlands",
1011
+ "required_fields": [
1012
+ "tracking_postal_code"
1013
+ ]
1014
+ },
1015
+ {
1016
+ "slug": "postnl-3s",
1017
+ "name": "PostNL International 3S",
1018
+ "other_name": "TNT Post parcel service United Kingdom",
1019
+ "required_fields": [
1020
+ "tracking_destination_country",
1021
+ "tracking_postal_code"
1022
+ ]
1023
+ },
1024
+ {
1025
+ "slug": "postnl-international",
1026
+ "name": "PostNL International",
1027
+ "other_name": "Netherlands Post, Spring Global Mail",
1028
+ "required_fields": []
1029
+ },
1030
+ {
1031
+ "slug": "postnord",
1032
+ "name": "PostNord Logistics",
1033
+ "other_name": "Posten Norden",
1034
+ "required_fields": []
1035
+ },
1036
+ {
1037
+ "slug": "ppbyb",
1038
+ "name": "PayPal Package",
1039
+ "other_name": "贝邮宝",
1040
+ "required_fields": []
1041
+ },
1042
+ {
1043
+ "slug": "professional-couriers",
1044
+ "name": "Professional Couriers",
1045
+ "other_name": "TPC India",
1046
+ "required_fields": []
1047
+ },
1048
+ {
1049
+ "slug": "ptt-posta",
1050
+ "name": "PTT Posta",
1051
+ "other_name": "Turkish Post",
1052
+ "required_fields": []
1053
+ },
1054
+ {
1055
+ "slug": "purolator",
1056
+ "name": "Purolator",
1057
+ "other_name": "Purolator Freight",
1058
+ "required_fields": []
1059
+ },
1060
+ {
1061
+ "slug": "qxpress",
1062
+ "name": "Qxpress",
1063
+ "other_name": "Qxpress Qoo10",
1064
+ "required_fields": []
1065
+ },
1066
+ {
1067
+ "slug": "raf",
1068
+ "name": "RAF Philippines",
1069
+ "other_name": "RAF Int'l. Forwarding",
1070
+ "required_fields": []
1071
+ },
1072
+ {
1073
+ "slug": "ramgroup-za",
1074
+ "name": "RAM",
1075
+ "other_name": "RAM Group",
1076
+ "required_fields": []
1077
+ },
1078
+ {
1079
+ "slug": "red-express",
1080
+ "name": "Red Express",
1081
+ "other_name": "Red Express",
1082
+ "required_fields": []
1083
+ },
1084
+ {
1085
+ "slug": "red-express-wb",
1086
+ "name": "Red Express Waybill",
1087
+ "other_name": "Red Express WayBill",
1088
+ "required_fields": []
1089
+ },
1090
+ {
1091
+ "slug": "redur-es",
1092
+ "name": "Redur Spain",
1093
+ "other_name": "Eurodis",
1094
+ "required_fields": []
1095
+ },
1096
+ {
1097
+ "slug": "rl-carriers",
1098
+ "name": "RL Carriers",
1099
+ "other_name": "R+L Carriers",
1100
+ "required_fields": []
1101
+ },
1102
+ {
1103
+ "slug": "royal-mail",
1104
+ "name": "Royal Mail",
1105
+ "other_name": "Royal Mail United Kingdom",
1106
+ "required_fields": []
1107
+ },
1108
+ {
1109
+ "slug": "rpx",
1110
+ "name": "RPX Indonesia",
1111
+ "other_name": "Repex Perdana International",
1112
+ "required_fields": []
1113
+ },
1114
+ {
1115
+ "slug": "rpxonline",
1116
+ "name": "RPX Online",
1117
+ "other_name": "Cathay Pacific",
1118
+ "required_fields": []
1119
+ },
1120
+ {
1121
+ "slug": "russian-post",
1122
+ "name": "Russian Post",
1123
+ "other_name": "Почта России, EMS Post RU",
1124
+ "required_fields": []
1125
+ },
1126
+ {
1127
+ "slug": "safexpress",
1128
+ "name": "Safexpress",
1129
+ "other_name": "Safexpress",
1130
+ "required_fields": []
1131
+ },
1132
+ {
1133
+ "slug": "sagawa",
1134
+ "name": "Sagawa",
1135
+ "other_name": "佐川急便",
1136
+ "required_fields": []
1137
+ },
1138
+ {
1139
+ "slug": "sapo",
1140
+ "name": "South African Post Office",
1141
+ "other_name": "South African Post Office",
1142
+ "required_fields": []
1143
+ },
1144
+ {
1145
+ "slug": "saudi-post",
1146
+ "name": "Saudi Post",
1147
+ "other_name": "البريد السعودي",
1148
+ "required_fields": []
1149
+ },
1150
+ {
1151
+ "slug": "sf-express",
1152
+ "name": "S.F. Express",
1153
+ "other_name": "順豊快遞",
1154
+ "required_fields": []
1155
+ },
1156
+ {
1157
+ "slug": "sfb2c",
1158
+ "name": "S.F International",
1159
+ "other_name": "順豐國際",
1160
+ "required_fields": []
1161
+ },
1162
+ {
1163
+ "slug": "sic-teliway",
1164
+ "name": "Teliway SIC Express",
1165
+ "other_name": "Prevote",
1166
+ "required_fields": [
1167
+ "tracking_account_number",
1168
+ "tracking_key"
1169
+ ]
1170
+ },
1171
+ {
1172
+ "slug": "singapore-post",
1173
+ "name": "Singapore Post",
1174
+ "other_name": "SingPost",
1175
+ "required_fields": []
1176
+ },
1177
+ {
1178
+ "slug": "singapore-speedpost",
1179
+ "name": "Singapore Speedpost",
1180
+ "other_name": "Singapore EMS",
1181
+ "required_fields": []
1182
+ },
1183
+ {
1184
+ "slug": "siodemka",
1185
+ "name": "Siodemka",
1186
+ "other_name": "Siodemka Kurier",
1187
+ "required_fields": []
1188
+ },
1189
+ {
1190
+ "slug": "skynet",
1191
+ "name": "SkyNet Malaysia",
1192
+ "other_name": "SkyNet MY",
1193
+ "required_fields": []
1194
+ },
1195
+ {
1196
+ "slug": "skynetworldwide",
1197
+ "name": "SkyNet Worldwide Express",
1198
+ "other_name": "Skynetwwe",
1199
+ "required_fields": []
1200
+ },
1201
+ {
1202
+ "slug": "skynetworldwide-uk",
1203
+ "name": "Skynet Worldwide Express UK",
1204
+ "other_name": "Skynet UK",
1205
+ "required_fields": []
1206
+ },
1207
+ {
1208
+ "slug": "spain-correos-es",
1209
+ "name": "Correos de España",
1210
+ "other_name": "Spain Post, ChronoExpress",
1211
+ "required_fields": []
1212
+ },
1213
+ {
1214
+ "slug": "spanish-seur",
1215
+ "name": "Spanish Seur",
1216
+ "other_name": "SEUR",
1217
+ "required_fields": []
1218
+ },
1219
+ {
1220
+ "slug": "specialisedfreight-za",
1221
+ "name": "Specialised Freight",
1222
+ "other_name": "SFS",
1223
+ "required_fields": []
1224
+ },
1225
+ {
1226
+ "slug": "speedcouriers-gr",
1227
+ "name": "Speed Couriers",
1228
+ "other_name": "Speed Couriers",
1229
+ "required_fields": []
1230
+ },
1231
+ {
1232
+ "slug": "speedexcourier",
1233
+ "name": "Speedex Courier",
1234
+ "other_name": "Speedex Courier",
1235
+ "required_fields": []
1236
+ },
1237
+ {
1238
+ "slug": "srekorea",
1239
+ "name": "SRE Korea",
1240
+ "other_name": "SRE 배송서비스",
1241
+ "required_fields": []
1242
+ },
1243
+ {
1244
+ "slug": "star-track",
1245
+ "name": "StarTrack",
1246
+ "other_name": "Star Track",
1247
+ "required_fields": []
1248
+ },
1249
+ {
1250
+ "slug": "star-track-express",
1251
+ "name": "Star Track Express",
1252
+ "other_name": "AaE Australian air Express",
1253
+ "required_fields": []
1254
+ },
1255
+ {
1256
+ "slug": "sto",
1257
+ "name": "STO Express",
1258
+ "other_name": "申通快递, Shentong Express",
1259
+ "required_fields": []
1260
+ },
1261
+ {
1262
+ "slug": "sweden-posten",
1263
+ "name": "Sweden Posten",
1264
+ "other_name": "Sweden Post",
1265
+ "required_fields": []
1266
+ },
1267
+ {
1268
+ "slug": "swiss-post",
1269
+ "name": "Swiss Post",
1270
+ "other_name": "La Poste Suisse, Die Schweizerische Post, Die Post",
1271
+ "required_fields": []
1272
+ },
1273
+ {
1274
+ "slug": "szdpex",
1275
+ "name": "DPEX China",
1276
+ "other_name": "DPEX(深圳)国际物流, Toll China",
1277
+ "required_fields": []
1278
+ },
1279
+ {
1280
+ "slug": "taiwan-post",
1281
+ "name": "Taiwan Post",
1282
+ "other_name": "Chunghwa Post, 台灣中華郵政",
1283
+ "required_fields": []
1284
+ },
1285
+ {
1286
+ "slug": "taqbin-hk",
1287
+ "name": "TAQBIN Hong Kong",
1288
+ "other_name": "Yamat, 雅瑪多運輸- 宅急便",
1289
+ "required_fields": []
1290
+ },
1291
+ {
1292
+ "slug": "taqbin-jp",
1293
+ "name": "Yamato Japan",
1294
+ "other_name": "ヤマト運輸, TAQBIN",
1295
+ "required_fields": []
1296
+ },
1297
+ {
1298
+ "slug": "taqbin-my",
1299
+ "name": "TAQBIN Malaysia",
1300
+ "other_name": "TAQBIN Malaysia",
1301
+ "required_fields": []
1302
+ },
1303
+ {
1304
+ "slug": "taqbin-sg",
1305
+ "name": "TAQBIN Singapore",
1306
+ "other_name": "Yamato Singapore",
1307
+ "required_fields": []
1308
+ },
1309
+ {
1310
+ "slug": "taxydromiki",
1311
+ "name": "Geniki Taxydromiki",
1312
+ "other_name": "ΓΕΝΙΚΗ ΤΑΧΥΔΡΟΜΙΚΗ",
1313
+ "required_fields": []
1314
+ },
1315
+ {
1316
+ "slug": "tgx",
1317
+ "name": "TGX",
1318
+ "other_name": "Top Gun Express, 精英速運",
1319
+ "required_fields": []
1320
+ },
1321
+ {
1322
+ "slug": "thailand-post",
1323
+ "name": "Thailand Thai Post",
1324
+ "other_name": "ไปรษณีย์ไทย",
1325
+ "required_fields": []
1326
+ },
1327
+ {
1328
+ "slug": "tiki",
1329
+ "name": "Tiki",
1330
+ "other_name": "Citra Van Titipan Kilat",
1331
+ "required_fields": []
1332
+ },
1333
+ {
1334
+ "slug": "tnt",
1335
+ "name": "TNT",
1336
+ "other_name": "TNT Express",
1337
+ "required_fields": []
1338
+ },
1339
+ {
1340
+ "slug": "tnt-au",
1341
+ "name": "TNT Australia",
1342
+ "other_name": "TNT AU",
1343
+ "required_fields": []
1344
+ },
1345
+ {
1346
+ "slug": "tnt-click",
1347
+ "name": "TNT-Click Italy",
1348
+ "other_name": "TNT Italy",
1349
+ "required_fields": []
1350
+ },
1351
+ {
1352
+ "slug": "tnt-fr",
1353
+ "name": "TNT France",
1354
+ "other_name": "TNT Express FR",
1355
+ "required_fields": []
1356
+ },
1357
+ {
1358
+ "slug": "tnt-it",
1359
+ "name": "TNT Italy",
1360
+ "other_name": "TNT Express IT",
1361
+ "required_fields": []
1362
+ },
1363
+ {
1364
+ "slug": "tnt-uk",
1365
+ "name": "TNT UK",
1366
+ "other_name": "TNT United Kingdom",
1367
+ "required_fields": []
1368
+ },
1369
+ {
1370
+ "slug": "tntpost-it",
1371
+ "name": "Nexive (TNT Post Italy)",
1372
+ "other_name": "Postnl TNT",
1373
+ "required_fields": []
1374
+ },
1375
+ {
1376
+ "slug": "toll-global-express",
1377
+ "name": "Toll Global Express",
1378
+ "other_name": "DPEX",
1379
+ "required_fields": []
1380
+ },
1381
+ {
1382
+ "slug": "toll-ipec",
1383
+ "name": "Toll IPEC",
1384
+ "other_name": "Toll Express",
1385
+ "required_fields": []
1386
+ },
1387
+ {
1388
+ "slug": "toll-priority",
1389
+ "name": "Toll Priority",
1390
+ "other_name": "Toll Group, Toll Priority",
1391
+ "required_fields": []
1392
+ },
1393
+ {
1394
+ "slug": "trakpak",
1395
+ "name": "TrakPak",
1396
+ "other_name": "bpost international P2P Mailing Trak Pak",
1397
+ "required_fields": []
1398
+ },
1399
+ {
1400
+ "slug": "transmission-nl",
1401
+ "name": "TransMission",
1402
+ "other_name": "mijnzending",
1403
+ "required_fields": [
1404
+ "tracking_postal_code"
1405
+ ]
1406
+ },
1407
+ {
1408
+ "slug": "uk-mail",
1409
+ "name": "UK Mail",
1410
+ "other_name": "Business Post Group",
1411
+ "required_fields": []
1412
+ },
1413
+ {
1414
+ "slug": "ukrposhta",
1415
+ "name": "UkrPoshta",
1416
+ "other_name": "Укрпошта",
1417
+ "required_fields": []
1418
+ },
1419
+ {
1420
+ "slug": "ups",
1421
+ "name": "UPS",
1422
+ "other_name": "United Parcel Service",
1423
+ "required_fields": []
1424
+ },
1425
+ {
1426
+ "slug": "ups-freight",
1427
+ "name": "UPS Freight",
1428
+ "other_name": "UPS LTL and Truckload",
1429
+ "required_fields": []
1430
+ },
1431
+ {
1432
+ "slug": "ups-mi",
1433
+ "name": "UPS Mail Innovations",
1434
+ "other_name": "UPS MI",
1435
+ "required_fields": []
1436
+ },
1437
+ {
1438
+ "slug": "usps",
1439
+ "name": "USPS",
1440
+ "other_name": "United States Postal Service",
1441
+ "required_fields": []
1442
+ },
1443
+ {
1444
+ "slug": "viettelpost",
1445
+ "name": "ViettelPost",
1446
+ "other_name": "Bưu chính Viettel",
1447
+ "required_fields": []
1448
+ },
1449
+ {
1450
+ "slug": "vnpost",
1451
+ "name": "Vietnam Post",
1452
+ "other_name": "VNPost",
1453
+ "required_fields": []
1454
+ },
1455
+ {
1456
+ "slug": "vnpost-ems",
1457
+ "name": "Vietnam Post EMS",
1458
+ "other_name": "VNPost EMS",
1459
+ "required_fields": []
1460
+ },
1461
+ {
1462
+ "slug": "wahana",
1463
+ "name": "Wahana",
1464
+ "other_name": "Wahana Indonesia",
1465
+ "required_fields": []
1466
+ },
1467
+ {
1468
+ "slug": "wedo",
1469
+ "name": "WeDo Logistics",
1470
+ "other_name": "運德物流",
1471
+ "required_fields": []
1472
+ },
1473
+ {
1474
+ "slug": "wishpost",
1475
+ "name": "WishPost",
1476
+ "other_name": "Wish",
1477
+ "required_fields": []
1478
+ },
1479
+ {
1480
+ "slug": "xdp-uk",
1481
+ "name": "XDP Express",
1482
+ "other_name": "XDP UK",
1483
+ "required_fields": [
1484
+ "tracking_postal_code"
1485
+ ]
1486
+ },
1487
+ {
1488
+ "slug": "xend",
1489
+ "name": "Xend Express",
1490
+ "other_name": "Xend Business Solutions",
1491
+ "required_fields": []
1492
+ },
1493
+ {
1494
+ "slug": "xpressbees",
1495
+ "name": "XpressBees",
1496
+ "other_name": "XpressBees logistics",
1497
+ "required_fields": []
1498
+ },
1499
+ {
1500
+ "slug": "yanwen",
1501
+ "name": "Yanwen",
1502
+ "other_name": "燕文物流",
1503
+ "required_fields": []
1504
+ },
1505
+ {
1506
+ "slug": "yodel",
1507
+ "name": "Yodel Domestic",
1508
+ "other_name": "Home Delivery Network Limited (HDNL)",
1509
+ "required_fields": []
1510
+ },
1511
+ {
1512
+ "slug": "yodel-international",
1513
+ "name": "Yodel International",
1514
+ "other_name": "Home Delivery Network, HDNL",
1515
+ "required_fields": []
1516
+ },
1517
+ {
1518
+ "slug": "yrc",
1519
+ "name": "YRC",
1520
+ "other_name": "YRC Freight",
1521
+ "required_fields": []
1522
+ },
1523
+ {
1524
+ "slug": "yundaex",
1525
+ "name": "Yunda Express",
1526
+ "other_name": "韵达快递",
1527
+ "required_fields": []
1528
+ }
1529
+ ];
1530
+ return data;
1531
  }
1532
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.aftership.com/
4
  Tags: shipping, tracking, ups, usps, fedex, dhl, tnt, dpd, post, shipment, woocommerce, tracking number, aftership, package tracking, fulfilment, tracking link, carrier, courier, woo commerce, woocommerce shipment tracking, shipping details plugin, widget, shipstation, track, package
5
  Requires at least: 2.9
6
  Tested up to: 4.1
7
- Stable tag: 1.4.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -95,6 +95,10 @@ You'll find the FAQ on [AfterShip.com](https://aftership.uservoice.com/knowledge
95
 
96
  == Changelog ==
97
 
 
 
 
 
98
  = 1.4.2 =
99
  * Fix carrier list data in setting page, to support new dropdown menu in Wordpress 4.1
100
 
4
  Tags: shipping, tracking, ups, usps, fedex, dhl, tnt, dpd, post, shipment, woocommerce, tracking number, aftership, package tracking, fulfilment, tracking link, carrier, courier, woo commerce, woocommerce shipment tracking, shipping details plugin, widget, shipstation, track, package
5
  Requires at least: 2.9
6
  Tested up to: 4.1
7
+ Stable tag: 1.4.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
95
 
96
  == Changelog ==
97
 
98
+ = 1.4.3 =
99
+ * Add new couriers
100
+ * Disable unused field for import orders to AfterShip system
101
+
102
  = 1.4.2 =
103
  * Fix carrier list data in setting page, to support new dropdown menu in Wordpress 4.1
104