AfterShip – WooCommerce Tracking - Version 1.10.0

Version Description

  • Add v3/orders API endpoint
Download this release

Release Info

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

Code changes from version 1.9.26 to 1.10.0

.gitignore DELETED
@@ -1,26 +0,0 @@
1
- # =============== RubyMine.gitignore
2
- # =============== PhPStorm.gitignore
3
- .idea
4
- dump.rdb
5
-
6
-
7
- # =============== OSX.gitignore
8
- .DS_Store
9
- .AppleDouble
10
- .LSOverride
11
-
12
- # Thumbnails
13
- ._*
14
-
15
- # =============== # Windows image file caches
16
- Thumbs.db
17
- ehthumbs.db
18
-
19
- # Folder config file
20
- Desktop.ini
21
-
22
- # Recycle Bin used on file shares
23
- $RECYCLE.BIN/
24
-
25
- # Except the .htpassed
26
- !.htpasswd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.9.26
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.10.0
7
  Author: AfterShip
8
  Author URI: http://aftership.com
9
 
api/{class-aftership-api-v2-json-handler.php → class-aftership-api-common-json-handler.php} RENAMED
@@ -14,7 +14,7 @@ if (!defined('ABSPATH')) {
14
  exit;
15
  } // Exit if accessed directly
16
 
17
- class AfterShip_API_V2_JSON_Handler implements AfterShip_API_Handler
18
  {
19
  /**
20
  * Get the content type for the response
14
  exit;
15
  } // Exit if accessed directly
16
 
17
+ class AfterShip_API_Common_JSON_Handler implements AfterShip_API_Handler
18
  {
19
  /**
20
  * Get the content type for the response
api/class-aftership-api-server.php CHANGED
@@ -142,18 +142,18 @@ class AfterShip_API_Server
142
  }else{
143
  $handler_class = apply_filters('aftership_api_default_response_handler', 'AfterShip_API_JSON_Handler', $this->path, $this);
144
  }
145
- if ($this->is_version_two()) {
146
- $handler_class = 'AfterShip_API_V2_JSON_Handler';
147
  }
148
  $this->handler = new $handler_class();
149
  }
150
 
151
- public function is_version_two() {
152
  // check path
153
- if ( false !== stripos( $this->path, '/v2' ) ) {
154
- return true;
155
  }
156
- return false;
157
  }
158
 
159
  /**
@@ -438,7 +438,7 @@ class AfterShip_API_Server
438
  'description' => get_option('blogdescription'),
439
  'URL' => get_option('siteurl'),
440
  'wc_version' => WC()->version,
441
- 'latest_api_version' => 'v2',
442
  'routes' => array(),
443
  'meta' => array(
444
  'timezone' => wc_timezone_string(),
142
  }else{
143
  $handler_class = apply_filters('aftership_api_default_response_handler', 'AfterShip_API_JSON_Handler', $this->path, $this);
144
  }
145
+ if (!$this->is_legacy()) {
146
+ $handler_class = 'AfterShip_API_Common_JSON_Handler';
147
  }
148
  $this->handler = new $handler_class();
149
  }
150
 
151
+ public function is_legacy() {
152
  // check path
153
+ if ( false !== stripos( $this->path, '/v3' ) ) {
154
+ return false;
155
  }
156
+ return true;
157
  }
158
 
159
  /**
438
  'description' => get_option('blogdescription'),
439
  'URL' => get_option('siteurl'),
440
  'wc_version' => WC()->version,
441
+ 'latest_api_version' => 'v3',
442
  'routes' => array(),
443
  'meta' => array(
444
  'timezone' => wc_timezone_string(),
api/{class-aftership-api-v2-orders.php → class-aftership-api-v3-orders.php} RENAMED
@@ -14,11 +14,11 @@ if (!defined('ABSPATH')) {
14
  exit;
15
  } // Exit if accessed directly
16
 
17
- class AfterShip_API_V2_Orders extends AfterShip_API_Resource
18
  {
19
 
20
  /** @var string $base the route base */
21
- protected $base = '/v2/orders';
22
 
23
  /**
24
  * Register the routes for this class
@@ -74,18 +74,15 @@ class AfterShip_API_V2_Orders extends AfterShip_API_Resource
74
  * @since 2.1
75
  *
76
  */
77
- public function get_orders($updated_at_min = null, $updated_at_max = null, $max_results_number = null)
78
  {
79
- $args = [
80
- 'updated_at_min' => $updated_at_min,
81
- 'updated_at_max' => $updated_at_max,
82
- 'orderby' => 'modified',
83
- 'order' => 'ASC',
84
- 'limit' => $max_results_number,
85
- 'page' => !empty($_GET['page']) && intval($_GET['page']) > 1 ? absint($_GET['page']) : 1
86
- ];
87
 
88
- $query = $this->query_orders($args);
89
 
90
  //define pagination
91
  $pagination = [
@@ -99,7 +96,7 @@ class AfterShip_API_V2_Orders extends AfterShip_API_Resource
99
  if (!$this->is_readable($order_id)) {
100
  continue;
101
  }
102
- $orders[] = $this->get_order($order_id);
103
  }
104
 
105
  return ['orders' => $orders, 'pagination' => $pagination];
@@ -111,9 +108,10 @@ class AfterShip_API_V2_Orders extends AfterShip_API_Resource
111
  * @return array|int|WP_Error
112
  * @throws Exception
113
  */
114
- public function get_order($id)
115
  {
116
  $weight_unit = get_option('woocommerce_weight_unit');
 
117
  // ensure order ID is valid & user has permission to read
118
  $id = $this->validate_request($id, 'shop_order', 'read');
119
  if (is_wp_error($id)) {
@@ -131,8 +129,8 @@ class AfterShip_API_V2_Orders extends AfterShip_API_Resource
131
  }
132
  $order_data = [
133
  'id' => (string)$order->get_id(),
134
- 'order_number' => $order->get_order_number(),
135
- 'order_name' => $order->get_order_number(),
136
  'taxes_included' => ($order->get_total_tax() > 0),
137
  'shipping_method' => $shipping_method,
138
  'order_total' => [
@@ -207,9 +205,23 @@ class AfterShip_API_V2_Orders extends AfterShip_API_Resource
207
  } else {
208
  $product = $order->get_product_from_item($item);
209
  }
210
- if (empty($product)) continue;
211
- $weight = $product->get_weight();
212
- $product_id = (isset($product->variation_id)) ? $product->variation_id : $product->get_id();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  // set the response object
214
  $terms_tags = get_the_terms($product_id, 'product_tag');
215
  $product_tags = [];
@@ -224,44 +236,30 @@ class AfterShip_API_V2_Orders extends AfterShip_API_Resource
224
  }
225
  $order_data['items'][] = [
226
  'id' => (string)$item_id,
227
- 'product_id' => (string)$product_id,
228
- 'sku' => is_object($product) ? $product->get_sku() : null,
 
229
  'title' => $item['name'],
230
  'quantity' => (int)$item['qty'],
231
- 'returnable_quantity' => (int)($item['qty'] - $order->get_qty_refunded_for_item($item_id)),
232
-
233
  'unit_weight' => [
234
  'unit' => $weight_unit,
235
- 'value' => (float)$weight,
236
  ],
237
  'unit_price' => [
238
  'currency' => $order->get_currency(),
239
  'amount' => (float)wc_format_decimal($order->get_item_total($item), 2),
240
  ],
241
- 'discount' => null,
242
- 'image_urls' => wp_get_attachment_url($product->image_id) ? [wp_get_attachment_url($product->image_id)] : [],
 
 
 
243
  'tags' => $product_tags,
244
  'categories' => $product_categories,
245
  ];
246
  }
247
 
248
- // tracking field will be
249
- /*
250
- {
251
- tracking_number: fulfillment.tracking_number,
252
- slug: mapped_slug,
253
- additional_fields: {
254
- account_number: null,
255
- key: null,
256
- postal_code: (data.shipping_address && data.shipping_address.zip) ? data.shipping_address.zip : null,
257
- ship_date: moment(fulfillment.updated_at).utcOffset('+0000').format('YYYYMMDD'),
258
- state: null,
259
- origin_country: null,
260
- destination_country: (data.shipping_address && data.shipping_address.country_code) ? beautifyAddress({country: data.shipping_address.country_code}).country_iso3 : null,
261
- },
262
- }
263
- */
264
-
265
  $trackings = [];
266
  //The function definition will be available after installing the aftership plugin.
267
  if(function_exists('order_post_meta_getter')) {
@@ -271,7 +269,13 @@ class AfterShip_API_V2_Orders extends AfterShip_API_Resource
271
  'slug' => order_post_meta_getter($order, 'aftership_tracking_provider'),
272
  'tracking_number' => $aftership_tracking_number,
273
  'additional_fields' => [
 
 
274
  'postal_code' => order_post_meta_getter($order, 'aftership_tracking_postal'),
 
 
 
 
275
  ],
276
  ];
277
  }
@@ -280,30 +284,26 @@ class AfterShip_API_V2_Orders extends AfterShip_API_Resource
280
  $woocommerce_tracking_arr = order_post_meta_getter($order, 'wc_shipment_tracking_items');
281
  if (empty($aftership_tracking_number) && !empty($woocommerce_tracking_arr)) {
282
  foreach ($woocommerce_tracking_arr as $trackingKey => $trackingVal) {
283
- $trackingArr = $this->getTrackingInfoByShipmentTracking($trackingVal);
284
- if (!empty($trackingArr)) {
285
- $trackings[] = [
286
- 'slug' => $trackingArr['tracking_provider'],
287
- 'tracking_number' => $trackingVal["tracking_number"],
288
- 'additional_fields' => [
289
- 'postal_code' => $trackingArr['tracking_postal_code'],
290
- ],
291
- ];
292
- } else {
293
- $trackings[] = [
294
- 'slug' => $trackingVal["tracking_provider"],
295
- 'tracking_number' =>$trackingVal["tracking_number"],
296
- 'additional_fields'=> [
297
- 'postal_code' => null,
298
- ]
299
- ];
300
- }
301
  }
302
  }
303
  $order_data['trackings'] = $trackings;
304
  }
305
 
306
- return $order_data;
307
  }
308
 
309
  /**
14
  exit;
15
  } // Exit if accessed directly
16
 
17
+ class AfterShip_API_V3_Orders extends AfterShip_API_Resource
18
  {
19
 
20
  /** @var string $base the route base */
21
+ protected $base = '/v3/orders';
22
 
23
  /**
24
  * Register the routes for this class
74
  * @since 2.1
75
  *
76
  */
77
+ public function get_orders($fields = null, $filter = array(), $status = null, $page = 1)
78
  {
79
+ if (!empty($status)) {
80
+ $filter['status'] = $status;
81
+ }
82
+
83
+ $filter['page'] = $page;
 
 
 
84
 
85
+ $query = $this->query_orders($filter);
86
 
87
  //define pagination
88
  $pagination = [
96
  if (!$this->is_readable($order_id)) {
97
  continue;
98
  }
99
+ $orders[] = current($this->get_order($order_id, $fields));
100
  }
101
 
102
  return ['orders' => $orders, 'pagination' => $pagination];
108
  * @return array|int|WP_Error
109
  * @throws Exception
110
  */
111
+ public function get_order($id, $fields = null)
112
  {
113
  $weight_unit = get_option('woocommerce_weight_unit');
114
+ $dp = wc_get_price_decimals();
115
  // ensure order ID is valid & user has permission to read
116
  $id = $this->validate_request($id, 'shop_order', 'read');
117
  if (is_wp_error($id)) {
129
  }
130
  $order_data = [
131
  'id' => (string)$order->get_id(),
132
+ 'order_number' => (string)$order->get_order_number(),
133
+ 'order_name' => '#' . (string)$order->get_order_number(),
134
  'taxes_included' => ($order->get_total_tax() > 0),
135
  'shipping_method' => $shipping_method,
136
  'order_total' => [
205
  } else {
206
  $product = $order->get_product_from_item($item);
207
  }
208
+
209
+ $product_id = 0;
210
+ $variation_id = 0;
211
+ $product_sku = null;
212
+ $weight = '';
213
+ $product_image_id = 0;
214
+
215
+ // Check if the product exists.
216
+ if ( is_object( $product ) ) {
217
+ $product_id = $item->get_product_id();
218
+ $variation_id = $item->get_variation_id();
219
+ $product_sku = $product->get_sku();
220
+ $weight = $product->get_weight();
221
+ $product_image_id = $product->get_image_id();
222
+ }
223
+ $subtotal = wc_format_decimal( $order->get_line_subtotal( $item, false, false ), $dp );
224
+ $total = wc_format_decimal( $order->get_line_total( $item, false, false ), $dp );
225
  // set the response object
226
  $terms_tags = get_the_terms($product_id, 'product_tag');
227
  $product_tags = [];
236
  }
237
  $order_data['items'][] = [
238
  'id' => (string)$item_id,
239
+ 'product_id' => $product_id ? (string)$product_id : null,
240
+ 'variant_id' => $variation_id ? (string)$variation_id : null,
241
+ 'sku' => $product_sku,
242
  'title' => $item['name'],
243
  'quantity' => (int)$item['qty'],
244
+ 'returnable_quantity' => (int)($item['qty'] - abs($order->get_qty_refunded_for_item($item_id))),
 
245
  'unit_weight' => [
246
  'unit' => $weight_unit,
247
+ 'value' => $weight === '' ? null : (float)$weight,
248
  ],
249
  'unit_price' => [
250
  'currency' => $order->get_currency(),
251
  'amount' => (float)wc_format_decimal($order->get_item_total($item), 2),
252
  ],
253
+ 'discount' => [
254
+ 'currency' => $order->get_currency(),
255
+ 'amount' => (float)($subtotal - $total),
256
+ ],
257
+ 'image_urls' => $product_image_id && wp_get_attachment_url($product_image_id) ? [wp_get_attachment_url($product_image_id)] : [],
258
  'tags' => $product_tags,
259
  'categories' => $product_categories,
260
  ];
261
  }
262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  $trackings = [];
264
  //The function definition will be available after installing the aftership plugin.
265
  if(function_exists('order_post_meta_getter')) {
269
  'slug' => order_post_meta_getter($order, 'aftership_tracking_provider'),
270
  'tracking_number' => $aftership_tracking_number,
271
  'additional_fields' => [
272
+ 'account_number' => order_post_meta_getter($order, 'aftership_tracking_account'),
273
+ 'key' => order_post_meta_getter($order, 'aftership_tracking_key'),
274
  'postal_code' => order_post_meta_getter($order, 'aftership_tracking_postal'),
275
+ 'ship_date' => order_post_meta_getter($order, 'aftership_tracking_shipdate'),
276
+ 'destination_country' => order_post_meta_getter($order, 'aftership_tracking_destination_country'),
277
+ 'state' => null,
278
+ 'origin_country' => null
279
  ],
280
  ];
281
  }
284
  $woocommerce_tracking_arr = order_post_meta_getter($order, 'wc_shipment_tracking_items');
285
  if (empty($aftership_tracking_number) && !empty($woocommerce_tracking_arr)) {
286
  foreach ($woocommerce_tracking_arr as $trackingKey => $trackingVal) {
287
+ $trackingInfo = $this->getTrackingInfoByShipmentTracking($trackingVal);
288
+ $trackings[] = [
289
+ 'slug' => !empty($trackingInfo) ? $trackingInfo['tracking_provider'] : $trackingVal["tracking_provider"],
290
+ 'tracking_number' => $trackingVal["tracking_number"],
291
+ 'additional_fields' => [
292
+ 'account_number' => null,
293
+ 'key' => null,
294
+ 'postal_code' => !empty($trackingInfo) ? $trackingInfo['tracking_postal_code'] : null,
295
+ 'ship_date' => null,
296
+ 'destination_country' => null,
297
+ 'state' => null,
298
+ 'origin_country' => null
299
+ ],
300
+ ];
 
 
 
 
301
  }
302
  }
303
  $order_data['trackings'] = $trackings;
304
  }
305
 
306
+ return array('order' => apply_filters('aftership_api_order_response', $order_data, $order, $fields, $this->server));
307
  }
308
 
309
  /**
assets/js/couriers.js CHANGED
@@ -1,4187 +1,4720 @@
1
  function get_couriers() {
2
  var data = [
3
  {
4
- "slug": "007ex",
5
- "name": "007EX",
6
- "other_name": "",
7
- "required_fields": []
8
  },
9
  {
10
- "slug": "17postservice",
11
- "name": "17 Post Service",
12
- "other_name": "17PostService",
13
- "required_fields": []
14
  },
15
  {
16
- "slug": "2ebox",
17
- "name": "2ebox",
18
- "other_name": "",
19
- "required_fields": []
20
  },
21
  {
22
- "slug": "2go",
23
- "name": "2GO",
24
- "other_name": "Negros Navigation",
25
- "required_fields": []
26
  },
27
  {
28
- "slug": "360lion",
29
- "name": "360 Lion Express",
30
- "other_name": "",
31
- "required_fields": []
32
  },
33
  {
34
- "slug": "4-72",
35
- "name": "4-72 Entregando",
36
- "other_name": "Colombia Postal Service",
37
- "required_fields": []
38
  },
39
  {
40
- "slug": "4px",
41
- "name": "4PX",
42
- "other_name": "递四方",
43
- "required_fields": []
44
  },
45
  {
46
- "slug": "800bestex",
47
- "name": "Best Express",
48
- "other_name": "百世汇通",
49
- "required_fields": []
50
  },
51
  {
52
- "slug": "aaa-cooper",
53
- "name": "AAA Cooper",
54
- "other_name": "",
55
- "required_fields": []
56
  },
57
  {
58
- "slug": "abcustom",
59
- "name": "AB Custom Group",
60
- "other_name": "",
61
- "required_fields": [
62
- "tracking_postal_code"
63
- ]
64
  },
65
  {
66
- "slug": "abf",
67
- "name": "ABF Freight",
68
- "other_name": "Arkansas Best Corporation",
69
- "required_fields": []
 
 
70
  },
71
  {
72
- "slug": "abxexpress-my",
73
- "name": "ABX Express",
74
- "other_name": "ABX Express (M) Sdn Bhd",
75
- "required_fields": []
76
  },
77
  {
78
- "slug": "acommerce",
79
- "name": "aCommerce",
80
- "other_name": "",
81
- "required_fields": []
82
  },
83
  {
84
- "slug": "acscourier",
85
- "name": "ACS Courier",
86
- "other_name": "Αναζήτηση Καταστημάτων",
87
- "required_fields": []
88
  },
89
  {
90
- "slug": "acsworldwide",
91
- "name": "ACS Worldwide Express",
92
- "other_name": "",
93
- "required_fields": []
94
  },
95
  {
96
- "slug": "adicional",
97
- "name": "Adicional Logistics",
98
- "other_name": "",
99
- "required_fields": []
100
  },
101
  {
102
- "slug": "adsone",
103
- "name": "ADSOne",
104
- "other_name": "ADSOne Group",
105
- "required_fields": []
106
  },
107
  {
108
- "slug": "aduiepyle",
109
- "name": "A Duie Pyle",
110
- "other_name": "",
111
- "required_fields": []
112
  },
113
  {
114
- "slug": "aeroflash",
115
- "name": "Mexico AeroFlash",
116
- "other_name": "AeroFlash",
117
- "required_fields": []
118
  },
119
  {
120
- "slug": "aersure",
121
- "name": "Aersure",
122
- "other_name": "",
123
- "required_fields": []
124
  },
125
  {
126
- "slug": "air21",
127
- "name": "AIR21",
128
- "other_name": "AIR 21 PH",
129
- "required_fields": []
130
  },
131
  {
132
- "slug": "airpak-express",
133
- "name": "Airpak Express",
134
- "other_name": "",
135
- "required_fields": []
136
  },
137
  {
138
- "slug": "airspeed",
139
- "name": "Airspeed International Corporation",
140
- "other_name": "Airspeed Philippines",
141
- "required_fields": []
142
  },
143
  {
144
- "slug": "alfatrex",
145
- "name": "AlfaTrex",
146
- "other_name": "",
147
- "required_fields": []
148
  },
149
  {
150
- "slug": "allied-express-ftp",
151
- "name": "Allied Express",
152
- "other_name": "",
153
- "required_fields": []
154
  },
155
  {
156
- "slug": "alliedexpress",
157
- "name": "Allied Express",
158
- "other_name": "",
159
- "required_fields": [
160
- "tracking_postal_code"
161
- ]
162
  },
163
  {
164
- "slug": "alljoy",
165
- "name": "ALLJOY SUPPLY CHAIN CO., LTD",
166
- "other_name": "",
167
- "required_fields": []
168
  },
169
  {
170
- "slug": "alphafast",
171
- "name": "alphaFAST",
172
- "other_name": "Alpha",
173
- "required_fields": []
174
  },
175
  {
176
- "slug": "always-express",
177
- "name": "Always Express",
178
- "other_name": "",
179
- "required_fields": []
180
  },
181
  {
182
- "slug": "amazon",
183
- "name": "Amazon Ground",
184
- "other_name": "",
185
- "required_fields": []
186
  },
187
  {
188
- "slug": "amazon-fba-us",
189
- "name": "Amazon FBA USA",
190
- "other_name": "",
191
- "required_fields": [
192
- "tracking_key"
193
- ]
194
  },
195
  {
196
- "slug": "amazon-logistics-uk",
197
- "name": "Amazon Logistics",
198
- "other_name": "",
199
- "required_fields": []
 
 
200
  },
201
  {
202
- "slug": "an-post",
203
- "name": "An Post",
204
- "other_name": "Ireland Post",
205
- "required_fields": []
206
  },
207
  {
208
- "slug": "antron",
209
- "name": "Antron Express",
210
- "other_name": "",
211
- "required_fields": []
212
  },
213
  {
214
- "slug": "ao-courier",
215
- "name": "AO Logistics",
216
- "other_name": "",
217
- "required_fields": []
218
  },
219
  {
220
- "slug": "apc",
221
- "name": "APC Postal Logistics",
222
- "other_name": "APC-PLI",
223
- "required_fields": []
224
  },
225
  {
226
- "slug": "apc-overnight",
227
- "name": "APC Overnight",
228
- "other_name": "Net Despatch",
229
- "required_fields": []
230
  },
231
  {
232
- "slug": "apc-overnight-connum",
233
- "name": "APC Overnight Consignment Number",
234
- "other_name": "",
235
- "required_fields": [
236
- "tracking_postal_code"
237
- ]
238
  },
239
  {
240
- "slug": "apg",
241
- "name": "APG eCommerce Solutions Ltd.",
242
- "other_name": "",
243
- "required_fields": []
244
  },
245
  {
246
- "slug": "aprisaexpress",
247
- "name": "Aprisa Express",
248
- "other_name": "",
249
- "required_fields": []
250
  },
251
  {
252
- "slug": "aquiline",
253
- "name": "Aquiline",
254
- "other_name": "",
255
- "required_fields": []
256
  },
257
  {
258
- "slug": "aramex",
259
- "name": "Aramex",
260
- "other_name": "ارامكس",
261
- "required_fields": []
262
  },
263
  {
264
- "slug": "arrowxl",
265
- "name": "Arrow XL",
266
- "other_name": "Yodel XL",
267
- "required_fields": [
268
- "tracking_postal_code"
269
- ]
270
  },
271
  {
272
- "slug": "asendia-de",
273
- "name": "Asendia Germany",
274
- "other_name": "Asendia De",
275
- "required_fields": []
276
  },
277
  {
278
- "slug": "asendia-hk",
279
- "name": "Asendia HK",
280
- "other_name": "",
281
- "required_fields": []
282
  },
283
  {
284
- "slug": "asendia-uk",
285
- "name": "Asendia UK",
286
- "other_name": "Asendia United Kingdom",
287
- "required_fields": []
288
  },
289
  {
290
- "slug": "asendia-usa",
291
- "name": "Asendia USA",
292
- "other_name": "Brokers Worldwide",
293
- "required_fields": []
294
  },
295
  {
296
- "slug": "asm",
297
- "name": "ASM",
298
- "other_name": "Asm-Red",
299
- "required_fields": [
300
- "tracking_postal_code"
301
- ]
302
  },
303
  {
304
- "slug": "aupost-china",
305
- "name": "AuPost China",
306
- "other_name": "澳邮宝",
307
- "required_fields": []
 
 
308
  },
309
  {
310
- "slug": "australia-post",
311
- "name": "Australia Post",
312
- "other_name": "AusPost",
313
- "required_fields": []
314
  },
315
  {
316
- "slug": "australia-post-api",
317
- "name": "Australia Post API",
318
- "other_name": "",
319
- "required_fields": []
320
  },
321
  {
322
- "slug": "australia-post-sftp",
323
- "name": "Australia Post Sftp",
324
- "other_name": "AusPostSftp",
325
- "required_fields": [
326
- "tracking_account_number"
327
- ]
328
  },
329
  {
330
- "slug": "austrian-post",
331
- "name": "Austrian Post (Express)",
332
- "other_name": "Österreichische Post AG",
333
- "required_fields": []
334
  },
335
  {
336
- "slug": "austrian-post-registered",
337
- "name": "Austrian Post (Registered)",
338
- "other_name": "Österreichische Post AG",
339
- "required_fields": []
340
  },
341
  {
342
- "slug": "averitt",
343
- "name": "Averitt Express",
344
- "other_name": "",
345
- "required_fields": []
 
 
346
  },
347
  {
348
- "slug": "b2ceurope",
349
- "name": "B2C Europe",
350
- "other_name": "trackyourparcel.eu",
351
- "required_fields": [
352
- "tracking_postal_code",
353
- "tracking_destination_country"
354
- ]
355
  },
356
  {
357
- "slug": "belpost",
358
- "name": "Belpost",
359
- "other_name": "Belposhta, Белпочта",
360
- "required_fields": []
361
  },
362
  {
363
- "slug": "bert-fr",
364
- "name": "Bert Transport",
365
- "other_name": "",
366
- "required_fields": []
367
  },
368
  {
369
- "slug": "bestwayparcel",
370
- "name": "Best Way Parcel",
371
- "other_name": "",
372
- "required_fields": [
373
- "tracking_key"
374
- ]
375
  },
376
  {
377
- "slug": "bgpost",
378
- "name": "Bulgarian Posts",
379
- "other_name": "Български пощи",
380
- "required_fields": []
381
  },
382
  {
383
- "slug": "bh-posta",
384
- "name": "JP BH Pošta",
385
- "other_name": "Bosnia and Herzegovina Post",
386
- "required_fields": []
387
  },
388
  {
389
- "slug": "bh-worldwide",
390
- "name": "B&H Worldwide",
391
- "other_name": "",
392
- "required_fields": []
 
 
393
  },
394
  {
395
- "slug": "birdsystem",
396
- "name": "BirdSystem",
397
- "other_name": "",
398
- "required_fields": []
399
  },
400
  {
401
- "slug": "bjshomedelivery-ftp",
402
- "name": "BJS Distribution, Storage & Couriers - FTP",
403
- "other_name": "",
404
- "required_fields": []
405
  },
406
  {
407
- "slug": "bluecare",
408
- "name": "Bluecare Express Ltd",
409
- "other_name": "",
410
- "required_fields": []
411
  },
412
  {
413
- "slug": "bluedart",
414
- "name": "Bluedart",
415
- "other_name": "Blue Dart Express",
416
- "required_fields": []
 
 
417
  },
418
  {
419
- "slug": "bluestar",
420
- "name": "Blue Star",
421
- "other_name": "",
422
- "required_fields": [
423
- "tracking_postal_code"
424
- ]
425
  },
426
  {
427
- "slug": "bneed",
428
- "name": "Bneed",
429
- "other_name": "",
430
- "required_fields": []
431
  },
432
  {
433
- "slug": "bond",
434
- "name": "Bond",
435
- "other_name": "",
436
- "required_fields": []
437
  },
438
  {
439
- "slug": "bondscouriers",
440
- "name": "Bonds Couriers",
441
- "other_name": "",
442
- "required_fields": []
 
 
 
443
  },
444
  {
445
- "slug": "borderexpress",
446
- "name": "Border Express",
447
- "other_name": "",
448
- "required_fields": []
449
  },
450
  {
451
- "slug": "box-berry",
452
- "name": "Boxberry",
453
- "other_name": "",
454
- "required_fields": []
455
  },
456
  {
457
- "slug": "boxc",
458
- "name": "BoxC",
459
- "other_name": "BOXC快遞",
460
- "required_fields": []
 
 
461
  },
462
  {
463
- "slug": "bpost",
464
- "name": "Bpost",
465
- "other_name": "Belgian Post, Belgium Post",
466
- "required_fields": [
467
- "tracking_postal_code"
468
- ]
469
  },
470
  {
471
- "slug": "bpost-international",
472
- "name": "Bpost international",
473
- "other_name": "Landmark Global",
474
- "required_fields": [
475
- "tracking_postal_code"
476
- ]
477
  },
478
  {
479
- "slug": "brazil-correios",
480
- "name": "Brazil Correios",
481
- "other_name": "Brazilian Post",
482
- "required_fields": []
483
  },
484
  {
485
- "slug": "bring",
486
- "name": "Bring",
487
- "other_name": "",
488
- "required_fields": []
489
  },
490
  {
491
- "slug": "brt-it",
492
- "name": "BRT Bartolini",
493
- "other_name": "BRT Corriere Espresso, DPD Italy",
494
- "required_fields": []
495
  },
496
  {
497
- "slug": "brt-it-parcelid",
498
- "name": "BRT Bartolini(Parcel ID)",
499
- "other_name": "BRT Corriere Espresso, DPD Italy",
500
- "required_fields": []
501
  },
502
  {
503
- "slug": "brt-it-sender-ref",
504
- "name": "BRT Bartolini(Sender Reference)",
505
- "other_name": "",
506
- "required_fields": [
507
- "tracking_account_number"
508
- ]
509
  },
510
  {
511
- "slug": "budbee-webhook",
512
- "name": "Budbee",
513
- "other_name": "",
514
- "required_fields": []
 
 
515
  },
516
  {
517
- "slug": "buylogic",
518
- "name": "Buylogic",
519
- "other_name": "捷买送",
520
- "required_fields": []
521
  },
522
  {
523
- "slug": "cae-delivers",
524
- "name": "CAE Delivers",
525
- "other_name": "",
526
- "required_fields": []
527
  },
528
  {
529
- "slug": "cambodia-post",
530
- "name": "Cambodia Post",
531
- "other_name": "Cambodia Post",
532
- "required_fields": []
533
  },
534
  {
535
- "slug": "canada-post",
536
- "name": "Canada Post",
537
- "other_name": "Postes Canada",
538
- "required_fields": []
539
  },
540
  {
541
- "slug": "canpar",
542
- "name": "Canpar Courier",
543
- "other_name": "TransForce",
544
- "required_fields": []
545
  },
546
  {
547
- "slug": "capital",
548
- "name": "Capital Transport",
549
- "other_name": "",
550
- "required_fields": [
551
- "tracking_account_number"
552
- ]
553
  },
554
  {
555
- "slug": "carriers",
556
- "name": "Carriers",
557
- "other_name": "",
558
- "required_fields": []
 
 
559
  },
560
  {
561
- "slug": "carry-flap",
562
- "name": "Carry-Flap Co.,Ltd.",
563
- "other_name": "",
564
- "required_fields": []
565
  },
566
  {
567
- "slug": "cbl-logistica",
568
- "name": "CBL Logistics",
569
- "other_name": "",
570
- "required_fields": []
571
  },
572
  {
573
- "slug": "cbl-logistica-api",
574
- "name": "CBL Logistica",
575
- "other_name": "",
576
- "required_fields": [
577
- "tracking_ship_date"
578
- ]
579
  },
580
  {
581
- "slug": "cdek-tr",
582
- "name": "CDEK TR",
583
- "other_name": "",
584
- "required_fields": []
585
  },
586
  {
587
- "slug": "celeritas",
588
- "name": "Celeritas Transporte, S.L",
589
- "other_name": "",
590
- "required_fields": []
591
  },
592
  {
593
- "slug": "ceska-posta",
594
- "name": "Česká Pošta",
595
- "other_name": "Czech Post",
596
- "required_fields": []
597
  },
598
  {
599
- "slug": "ceva",
600
- "name": "CEVA LOGISTICS",
601
- "other_name": "",
602
- "required_fields": []
603
  },
604
  {
605
- "slug": "ceva-tracking",
606
- "name": "CEVA Package",
607
- "other_name": "",
608
- "required_fields": []
 
 
609
  },
610
  {
611
- "slug": "cfl-logistics",
612
- "name": "CFL Logistics",
613
- "other_name": "",
614
- "required_fields": []
615
  },
616
  {
617
- "slug": "champion-logistics",
618
- "name": "Champion Logistics",
619
- "other_name": "Champlog",
620
- "required_fields": []
621
  },
622
  {
623
- "slug": "china-ems",
624
- "name": "China EMS (ePacket)",
625
- "other_name": "中国邮政速递物流, ePacket, e-Packet, e Packet",
626
- "required_fields": []
627
  },
628
  {
629
- "slug": "china-post",
630
- "name": "China Post",
631
- "other_name": "中国邮政",
632
- "required_fields": []
633
  },
634
  {
635
- "slug": "chitchats",
636
- "name": "Chit Chats",
637
- "other_name": "",
638
- "required_fields": []
639
  },
640
  {
641
- "slug": "chrobinson",
642
- "name": "C.H. Robinson Worldwide, Inc.",
643
- "other_name": "",
644
- "required_fields": [
645
- "tracking_key"
646
- ]
647
  },
648
  {
649
- "slug": "chronopost-france",
650
- "name": "Chronopost France",
651
- "other_name": "La Poste EMS",
652
- "required_fields": []
653
  },
654
  {
655
- "slug": "chronopost-portugal",
656
- "name": "Chronopost Portugal",
657
- "other_name": "Chronopost pt",
658
- "required_fields": []
 
 
659
  },
660
  {
661
- "slug": "citylinkexpress",
662
- "name": "City-Link Express",
663
- "other_name": "Citylink Malaysia",
664
- "required_fields": []
665
  },
666
  {
667
- "slug": "cj-gls",
668
- "name": "CJ GLS",
669
- "other_name": "CJ Korea Express, 씨제이지엘에스주식회사",
670
- "required_fields": []
671
  },
672
  {
673
- "slug": "cj-korea-thai",
674
- "name": "CJ Korea Express",
675
- "other_name": "",
676
- "required_fields": []
677
  },
678
  {
679
- "slug": "cj-malaysia",
680
- "name": "CJ Century",
681
- "other_name": "CJ Logistics Malaysia",
682
- "required_fields": []
683
  },
684
  {
685
- "slug": "cj-malaysia-international",
686
- "name": "CJ Century (International)",
687
- "other_name": "CJ Logistics",
688
- "required_fields": []
689
  },
690
  {
691
- "slug": "cj-philippines",
692
- "name": "CJ Transnational Philippines",
693
- "other_name": "",
694
- "required_fields": []
695
  },
696
  {
697
- "slug": "cjlogistics",
698
- "name": "CJ Logistics International",
699
- "other_name": "",
700
- "required_fields": []
701
  },
702
  {
703
- "slug": "cjpacket",
704
- "name": "CJ Packet",
705
- "other_name": "",
706
- "required_fields": []
707
  },
708
  {
709
- "slug": "cle-logistics",
710
- "name": "CL E-Logistics Solutions Limited",
711
- "other_name": "",
712
- "required_fields": []
713
  },
714
  {
715
- "slug": "clevy-links",
716
- "name": "Clevy Links",
717
- "other_name": "",
718
- "required_fields": []
719
  },
720
  {
721
- "slug": "cloudwish-asia",
722
- "name": "Cloudwish Asia",
723
- "other_name": "",
724
- "required_fields": []
725
  },
726
  {
727
- "slug": "cnexps",
728
- "name": "CNE Express",
729
- "other_name": "国际快递",
730
- "required_fields": []
731
  },
732
  {
733
- "slug": "colis-prive",
734
- "name": "Colis Privé",
735
- "other_name": "ColisPrivé",
736
- "required_fields": [
737
- "tracking_postal_code"
738
- ]
739
  },
740
  {
741
- "slug": "colissimo",
742
- "name": "Colissimo",
743
- "other_name": "Colissimo fr",
744
- "required_fields": []
745
  },
746
  {
747
- "slug": "collectco",
748
- "name": "CollectCo",
749
- "other_name": "",
750
- "required_fields": []
751
  },
752
  {
753
- "slug": "collectplus",
754
- "name": "Collect+",
755
- "other_name": "Collect Plus UK",
756
- "required_fields": []
757
  },
758
  {
759
- "slug": "collivery",
760
- "name": "MDS Collivery Pty (Ltd)",
761
- "other_name": "",
762
- "required_fields": []
763
  },
764
  {
765
- "slug": "con-way",
766
- "name": "Con-way Freight",
767
- "other_name": "Conway",
768
- "required_fields": []
769
  },
770
  {
771
- "slug": "continental",
772
- "name": "Continental",
773
- "other_name": "",
774
- "required_fields": []
775
  },
776
  {
777
- "slug": "copa-courier",
778
- "name": "Copa Airlines Courier",
779
- "other_name": "Copa Courier",
780
- "required_fields": []
 
 
781
  },
782
  {
783
- "slug": "cope",
784
- "name": "Cope Sensitive Freight",
785
- "other_name": "",
786
- "required_fields": []
787
  },
788
  {
789
- "slug": "correos-chile",
790
- "name": "Correos Chile",
791
- "other_name": "Chile Post",
792
- "required_fields": []
793
  },
794
  {
795
- "slug": "correos-de-mexico",
796
- "name": "Correos de Mexico",
797
- "other_name": "Mexico Post",
798
- "required_fields": []
799
  },
800
  {
801
- "slug": "correosexpress",
802
- "name": "Correos Express",
803
- "other_name": "",
804
- "required_fields": []
805
  },
806
  {
807
- "slug": "correosexpress-api",
808
- "name": "Correos Express",
809
- "other_name": "",
810
- "required_fields": []
811
  },
812
  {
813
- "slug": "costmeticsnow",
814
- "name": "Cosmetics Now",
815
- "other_name": "CosmeticsNow",
816
- "required_fields": []
817
  },
818
  {
819
- "slug": "courex",
820
- "name": "Urbanfox",
821
- "other_name": "",
822
- "required_fields": []
823
  },
824
  {
825
- "slug": "courier-plus",
826
- "name": "Courier Plus",
827
- "other_name": "Courier Plus",
828
- "required_fields": []
829
  },
830
  {
831
- "slug": "courierit",
832
- "name": "Courier IT",
833
- "other_name": "Courierit",
834
- "required_fields": []
835
  },
836
  {
837
- "slug": "courierpost",
838
- "name": "CourierPost",
839
- "other_name": "Express Couriers",
840
- "required_fields": []
841
  },
842
  {
843
- "slug": "couriers-please",
844
- "name": "Couriers Please",
845
- "other_name": "CouriersPlease",
846
- "required_fields": []
847
  },
848
  {
849
- "slug": "cpacket",
850
- "name": "cPacket",
851
- "other_name": "u52a0u90aeu5b9d",
852
- "required_fields": []
853
  },
854
  {
855
- "slug": "ctc-express",
856
- "name": "CTC Express",
857
- "other_name": "",
858
- "required_fields": []
859
  },
860
  {
861
- "slug": "cubyn",
862
- "name": "Cubyn",
863
- "other_name": "",
864
- "required_fields": []
865
  },
866
  {
867
- "slug": "cuckooexpress",
868
- "name": "Cuckoo Express",
869
- "other_name": "布谷鸟",
870
- "required_fields": []
871
  },
872
  {
873
- "slug": "cyprus-post",
874
- "name": "Cyprus Post",
875
- "other_name": "ΚΥΠΡΙΑΚΑ ΤΑΧΥΔΡΟΜΕΙΑ",
876
- "required_fields": []
877
  },
878
  {
879
- "slug": "dachser",
880
- "name": "DACHSER",
881
- "other_name": "Azkar",
882
- "required_fields": []
883
  },
884
  {
885
- "slug": "dajin",
886
- "name": "Shanghai Aqrum Chemical Logistics Co.Ltd",
887
- "other_name": "Dajin",
888
- "required_fields": []
 
 
889
  },
890
  {
891
- "slug": "danmark-post",
892
- "name": "PostNord Denmark",
893
- "other_name": "Danmark Post",
894
- "required_fields": []
895
  },
896
  {
897
- "slug": "danske-fragt",
898
- "name": "Danske Fragtmænd",
899
- "other_name": "Fragt DK",
900
- "required_fields": []
901
  },
902
  {
903
- "slug": "dao365",
904
- "name": "DAO365",
905
- "other_name": "",
906
- "required_fields": []
907
  },
908
  {
909
- "slug": "dawnwing",
910
- "name": "Dawn Wing",
911
- "other_name": "DPD Laser Express Logistics",
912
- "required_fields": []
913
  },
914
  {
915
- "slug": "dayton-freight",
916
- "name": "Dayton Freight",
917
- "other_name": "",
918
- "required_fields": []
919
  },
920
  {
921
- "slug": "dbschenker-se",
922
- "name": "DB Schenker",
923
- "other_name": "Deutsche Bahn",
924
- "required_fields": []
925
  },
926
  {
927
- "slug": "dbschenker-sv",
928
- "name": "DB Schenker Sweden",
929
- "other_name": "",
930
- "required_fields": []
931
  },
932
  {
933
- "slug": "ddexpress",
934
- "name": "DD Express Courier",
935
- "other_name": "",
936
- "required_fields": []
937
  },
938
  {
939
- "slug": "delcart-in",
940
- "name": "Delcart",
941
- "other_name": "",
942
- "required_fields": []
943
  },
944
  {
945
- "slug": "delhivery",
946
- "name": "Delhivery",
947
- "other_name": "Gharpay",
948
- "required_fields": []
949
  },
950
  {
951
- "slug": "deliveryontime",
952
- "name": "DELIVERYONTIME LOGISTICS PVT LTD",
953
- "other_name": "",
954
- "required_fields": []
955
  },
956
  {
957
- "slug": "delnext",
958
- "name": "Delnext",
959
- "other_name": "",
960
- "required_fields": []
961
  },
962
  {
963
- "slug": "deltec-courier",
964
- "name": "Deltec Courier",
965
- "other_name": "Deltec Interntional Courier",
966
- "required_fields": []
967
  },
968
  {
969
- "slug": "demandship",
970
- "name": "DemandShip",
971
- "other_name": "",
972
- "required_fields": []
973
  },
974
  {
975
- "slug": "descartes",
976
- "name": "Innovel",
977
- "other_name": "",
978
- "required_fields": []
 
 
979
  },
980
  {
981
- "slug": "detrack",
982
- "name": "Detrack",
983
- "other_name": "Detrack Singapore",
984
- "required_fields": []
985
  },
986
  {
987
- "slug": "deutsch-post",
988
- "name": "Deutsche Post Mail",
989
- "other_name": "dpdhl",
990
- "required_fields": [
991
- "tracking_ship_date"
992
- ]
993
  },
994
  {
995
- "slug": "dex-i",
996
- "name": "DEX-I",
997
- "other_name": "",
998
- "required_fields": []
999
  },
1000
  {
1001
- "slug": "dhl",
1002
- "name": "DHL Express",
1003
- "other_name": "DHL International",
1004
- "required_fields": []
1005
  },
1006
  {
1007
- "slug": "dhl-active-tracing",
1008
- "name": "DHL Active Tracing",
1009
- "other_name": "",
1010
- "required_fields": []
1011
  },
1012
  {
1013
- "slug": "dhl-benelux",
1014
- "name": "DHL Benelux",
1015
- "other_name": "DHL TrackNet Benelux",
1016
- "required_fields": []
1017
  },
1018
  {
1019
- "slug": "dhl-deliverit",
1020
- "name": "DHL 2-Mann-Handling",
1021
- "other_name": "DHL Deliver IT",
1022
- "required_fields": []
1023
  },
1024
  {
1025
- "slug": "dhl-es",
1026
- "name": "DHL Spain Domestic",
1027
- "other_name": "DHL España",
1028
- "required_fields": []
1029
  },
1030
  {
1031
- "slug": "dhl-germany",
1032
- "name": "Deutsche Post DHL",
1033
- "other_name": "DHL Germany",
1034
- "required_fields": []
1035
  },
1036
  {
1037
- "slug": "dhl-global-forwarding",
1038
- "name": "DHL Global Forwarding",
1039
- "other_name": "DHL Logistics",
1040
- "required_fields": []
1041
  },
1042
  {
1043
- "slug": "dhl-global-mail",
1044
- "name": "DHL eCommerce US",
1045
- "other_name": "DHL Global Mail",
1046
- "required_fields": []
1047
  },
1048
  {
1049
- "slug": "dhl-global-mail-asia",
1050
- "name": "DHL eCommerce Asia",
1051
- "other_name": "DGM Asia",
1052
- "required_fields": []
1053
  },
1054
  {
1055
- "slug": "dhl-global-mail-asia-api",
1056
- "name": "DHL eCommerce Asia",
1057
- "other_name": "",
1058
- "required_fields": []
1059
  },
1060
  {
1061
- "slug": "dhl-hk",
1062
- "name": "DHL Hong Kong",
1063
- "other_name": "DHL HK Domestic",
1064
- "required_fields": []
1065
  },
1066
  {
1067
- "slug": "dhl-nl",
1068
- "name": "DHL Netherlands",
1069
- "other_name": "DHL Nederlands",
1070
- "required_fields": []
1071
  },
1072
  {
1073
- "slug": "dhl-pieceid",
1074
- "name": "DHL Express (Piece ID)",
1075
- "other_name": "DHL International",
1076
- "required_fields": []
1077
  },
1078
  {
1079
- "slug": "dhl-poland",
1080
- "name": "DHL Poland Domestic",
1081
- "other_name": "DHL Polska",
1082
- "required_fields": []
1083
  },
1084
  {
1085
- "slug": "dhl-reference",
1086
- "name": "DHL",
1087
- "other_name": null,
1088
- "required_fields": [
1089
- "tracking_ship_date"
1090
- ]
1091
  },
1092
  {
1093
- "slug": "dhl-supply-chain-au",
1094
- "name": "DHL Supply Chain Australia",
1095
- "other_name": "DHL ConnectedView",
1096
- "required_fields": []
1097
  },
1098
  {
1099
- "slug": "dhl-supplychain-id",
1100
- "name": "DHL Supply Chain Indonesia",
1101
- "other_name": "",
1102
- "required_fields": []
1103
  },
1104
  {
1105
- "slug": "dhlparcel-es",
1106
- "name": "DHL Parcel Spain",
1107
- "other_name": "",
1108
- "required_fields": []
1109
  },
1110
  {
1111
- "slug": "dhlparcel-nl",
1112
- "name": "DHL Parcel NL",
1113
- "other_name": "Selektvracht, dhlparcel.nl",
1114
- "required_fields": []
1115
  },
1116
  {
1117
- "slug": "dhlparcel-uk",
1118
- "name": "DHL Parcel UK",
1119
- "other_name": "",
1120
- "required_fields": []
1121
  },
1122
  {
1123
- "slug": "dimerco",
1124
- "name": "Dimerco Express Group",
1125
- "other_name": "",
1126
- "required_fields": []
1127
  },
1128
  {
1129
- "slug": "directfreight-au",
1130
- "name": "Direct Freight Express",
1131
- "other_name": "",
1132
- "required_fields": []
1133
  },
1134
  {
1135
- "slug": "directlog",
1136
- "name": "Directlog",
1137
- "other_name": "Direct Express",
1138
- "required_fields": []
1139
  },
1140
  {
1141
- "slug": "dmm-network",
1142
- "name": "DMM Network",
1143
- "other_name": "dmmnetwork.it",
1144
- "required_fields": []
1145
  },
1146
  {
1147
- "slug": "dms-matrix",
1148
- "name": "DMSMatrix",
1149
- "other_name": "",
1150
- "required_fields": []
1151
  },
1152
  {
1153
- "slug": "dnj-express",
1154
- "name": "DNJ Express",
1155
- "other_name": "",
1156
- "required_fields": []
1157
  },
1158
  {
1159
- "slug": "doora",
1160
- "name": "Doora Logistics",
1161
- "other_name": "",
1162
- "required_fields": []
1163
  },
1164
  {
1165
- "slug": "doordash-webhook",
1166
- "name": "DoorDash",
1167
- "other_name": "",
1168
- "required_fields": []
1169
  },
1170
  {
1171
- "slug": "dotzot",
1172
- "name": "Dotzot",
1173
- "other_name": "Dotzot",
1174
- "required_fields": []
 
 
1175
  },
1176
  {
1177
- "slug": "dpd",
1178
- "name": "DPD",
1179
- "other_name": "Dynamic Parcel Distribution",
1180
- "required_fields": []
1181
  },
1182
  {
1183
- "slug": "dpd-de",
1184
- "name": "DPD Germany",
1185
- "other_name": "DPD Germany",
1186
- "required_fields": []
1187
  },
1188
  {
1189
- "slug": "dpd-fr-reference",
1190
- "name": "DPD France",
1191
- "other_name": "",
1192
- "required_fields": [
1193
- "tracking_account_number"
1194
- ]
1195
  },
1196
  {
1197
- "slug": "dpd-hk",
1198
- "name": "DPD HK",
1199
- "other_name": "",
1200
- "required_fields": []
1201
  },
1202
  {
1203
- "slug": "dpd-ireland",
1204
- "name": "DPD Ireland",
1205
- "other_name": "DPD ie",
1206
- "required_fields": []
1207
  },
1208
  {
1209
- "slug": "dpd-poland",
1210
- "name": "DPD Poland",
1211
- "other_name": "Dynamic Parcel Distribution Poland",
1212
- "required_fields": []
1213
  },
1214
  {
1215
- "slug": "dpd-ro",
1216
- "name": "DPD Romania",
1217
- "other_name": "",
1218
- "required_fields": []
1219
  },
1220
  {
1221
- "slug": "dpd-ru",
1222
- "name": "DPD Russia",
1223
- "other_name": "",
1224
- "required_fields": []
1225
  },
1226
  {
1227
- "slug": "dpd-uk",
1228
- "name": "DPD UK",
1229
- "other_name": "Dynamic Parcel Distribution UK",
1230
- "required_fields": []
1231
  },
1232
  {
1233
- "slug": "dpe-express",
1234
- "name": "DPE Express",
1235
- "other_name": "Delivery Perfect Express Co.",
1236
- "required_fields": []
1237
  },
1238
  {
1239
- "slug": "dpe-za",
1240
- "name": "DPE South Africa",
1241
- "other_name": "DPE Worldwide Express",
1242
- "required_fields": []
1243
  },
1244
  {
1245
- "slug": "dpex",
1246
- "name": "DPEX",
1247
- "other_name": "TGX, Toll Global Express Asia",
1248
- "required_fields": []
1249
  },
1250
  {
1251
- "slug": "dsv",
1252
- "name": "DSV",
1253
- "other_name": "",
1254
- "required_fields": []
1255
  },
1256
  {
1257
- "slug": "dtdc",
1258
- "name": "DTDC India",
1259
- "other_name": "DTDC Courier & Cargo",
1260
- "required_fields": []
1261
  },
1262
  {
1263
- "slug": "dtdc-au",
1264
- "name": "DTDC Australia",
1265
- "other_name": "",
1266
- "required_fields": []
1267
  },
1268
  {
1269
- "slug": "dtdc-express",
1270
- "name": "DTDC Express Global PTE LTD",
1271
- "other_name": "",
1272
- "required_fields": []
1273
  },
1274
  {
1275
- "slug": "dx",
1276
- "name": "DX",
1277
- "other_name": "-",
1278
- "required_fields": [
1279
- "tracking_account_number"
1280
- ]
1281
  },
1282
  {
1283
- "slug": "dx-b2b-connum",
1284
- "name": "DX",
1285
- "other_name": null,
1286
- "required_fields": []
1287
  },
1288
  {
1289
- "slug": "dx-freight",
1290
- "name": "DX Freight",
1291
- "other_name": "",
1292
- "required_fields": []
1293
  },
1294
  {
1295
- "slug": "dylt",
1296
- "name": "Daylight Transport, LLC",
1297
- "other_name": "",
1298
- "required_fields": []
1299
  },
1300
  {
1301
- "slug": "dynamic-logistics",
1302
- "name": "Dynamic Logistics",
1303
- "other_name": "Dynamic Logistics Thailand",
1304
- "required_fields": [
1305
- "tracking_account_number"
1306
- ]
1307
  },
1308
  {
1309
- "slug": "easy-mail",
1310
- "name": "Easy Mail",
1311
- "other_name": "",
1312
- "required_fields": []
1313
  },
1314
  {
1315
- "slug": "ec-firstclass",
1316
- "name": "EC-Firstclass",
1317
- "other_name": "ChuKou1, CK1",
1318
- "required_fields": []
1319
  },
1320
  {
1321
- "slug": "ecargo-asia",
1322
- "name": "Ecargo",
1323
- "other_name": "Ecargo Pte. Ltd",
1324
- "required_fields": []
1325
  },
1326
  {
1327
- "slug": "echo",
1328
- "name": "Echo",
1329
- "other_name": "Echo Global Logistics",
1330
- "required_fields": []
1331
  },
1332
  {
1333
- "slug": "ecms",
1334
- "name": "ECMS International Logistics Co., Ltd.",
1335
- "other_name": "",
1336
- "required_fields": []
1337
  },
1338
  {
1339
- "slug": "ecom-express",
1340
- "name": "Ecom Express",
1341
- "other_name": "EcomExpress",
1342
- "required_fields": []
1343
  },
1344
  {
1345
- "slug": "ecoutier",
1346
- "name": "eCoutier",
1347
- "other_name": "",
1348
- "required_fields": []
1349
  },
1350
  {
1351
- "slug": "efex",
1352
- "name": "eFEx (E-Commerce Fulfillment & Express)",
1353
- "other_name": "",
1354
- "required_fields": []
1355
  },
1356
  {
1357
- "slug": "efs",
1358
- "name": "EFS (E-commerce Fulfillment Service)",
1359
- "other_name": "",
1360
- "required_fields": []
1361
  },
1362
  {
1363
- "slug": "ekart",
1364
- "name": "Ekart",
1365
- "other_name": "Ekart Logistics",
1366
- "required_fields": []
1367
  },
1368
  {
1369
- "slug": "elta-courier",
1370
- "name": "ELTA Hellenic Post",
1371
- "other_name": "Greece Post, Ελληνικά Ταχυδρομεία, ELTA Courier, Ταχυμεταφορές ΕΛΤΑ",
1372
- "required_fields": []
1373
  },
1374
  {
1375
- "slug": "emirates-post",
1376
- "name": "Emirates Post",
1377
- "other_name": "مجموعة بريد الإمارات, UAE Post",
1378
- "required_fields": []
1379
  },
1380
  {
1381
- "slug": "empsexpress",
1382
- "name": "EMPS Express",
1383
- "other_name": "快信快包",
1384
- "required_fields": []
1385
  },
1386
  {
1387
- "slug": "endeavour-delivery",
1388
- "name": "Endeavour Delivery",
1389
- "other_name": "",
1390
- "required_fields": [
1391
- "tracking_postal_code"
1392
- ]
1393
  },
1394
  {
1395
- "slug": "ensenda",
1396
- "name": "Ensenda",
1397
- "other_name": "",
1398
- "required_fields": []
 
 
1399
  },
1400
  {
1401
- "slug": "envialia",
1402
- "name": "Envialia",
1403
- "other_name": "Envialia Spain",
1404
- "required_fields": []
1405
  },
1406
  {
1407
- "slug": "ep-box",
1408
- "name": "EP-Box",
1409
- "other_name": "",
1410
- "required_fields": []
1411
  },
1412
  {
1413
- "slug": "eparcel-kr",
1414
- "name": "eParcel Korea",
1415
- "other_name": "Yong Seoung",
1416
- "required_fields": []
1417
  },
1418
  {
1419
- "slug": "equick-cn",
1420
- "name": "Equick China",
1421
- "other_name": "北京网易速达",
1422
- "required_fields": []
1423
  },
1424
  {
1425
- "slug": "eshipping",
1426
- "name": "Eshipping",
1427
- "other_name": "Eshipping Global Supply Chain Management(Shenzhen)Co. Ltd",
1428
- "required_fields": []
1429
  },
1430
  {
1431
- "slug": "estafeta",
1432
- "name": "Estafeta",
1433
- "other_name": "Estafeta Mexicana",
1434
- "required_fields": []
1435
  },
1436
  {
1437
- "slug": "estes",
1438
- "name": "Estes",
1439
- "other_name": "Estes Express Lines",
1440
- "required_fields": []
1441
  },
1442
  {
1443
- "slug": "etomars",
1444
- "name": "Etomars",
1445
- "other_name": "",
1446
- "required_fields": []
1447
  },
1448
  {
1449
- "slug": "etotal",
1450
- "name": "eTotal Solution Limited",
1451
- "other_name": "",
1452
- "required_fields": []
1453
  },
1454
  {
1455
- "slug": "ets-express",
1456
- "name": "RETS express",
1457
- "other_name": "绥芬河俄通收国际货物运输代理有限责任公司",
1458
- "required_fields": []
1459
  },
1460
  {
1461
- "slug": "eu-fleet-solutions",
1462
- "name": "EU Fleet Solutions",
1463
- "other_name": "",
1464
- "required_fields": [
1465
- "tracking_postal_code"
1466
- ]
1467
  },
1468
  {
1469
- "slug": "eurodis",
1470
- "name": "Eurodis",
1471
- "other_name": "",
1472
- "required_fields": []
1473
  },
1474
  {
1475
- "slug": "exapaq",
1476
- "name": "DPD France",
1477
- "other_name": "Exapaq",
1478
- "required_fields": []
1479
  },
1480
  {
1481
- "slug": "expeditors",
1482
- "name": "Expeditors",
1483
- "other_name": "",
1484
- "required_fields": []
 
 
1485
  },
1486
  {
1487
- "slug": "expeditors-api",
1488
- "name": "Expeditors API",
1489
- "other_name": "",
1490
- "required_fields": []
1491
  },
1492
  {
1493
- "slug": "expresssale",
1494
- "name": "Expresssale",
1495
- "other_name": "",
1496
- "required_fields": []
1497
  },
1498
  {
1499
- "slug": "ezship",
1500
- "name": "EZship",
1501
- "other_name": "",
1502
- "required_fields": []
1503
  },
1504
  {
1505
- "slug": "far-international",
1506
- "name": "FAR international",
1507
- "other_name": "",
1508
- "required_fields": []
1509
  },
1510
  {
1511
- "slug": "fastrak-th",
1512
- "name": "Fastrak Services",
1513
- "other_name": "Fastrak Advanced Delivery Systems",
1514
- "required_fields": []
 
 
1515
  },
1516
  {
1517
- "slug": "fasttrack",
1518
- "name": "Fasttrack",
1519
- "other_name": "",
1520
- "required_fields": []
1521
  },
1522
  {
1523
- "slug": "fastway-au",
1524
- "name": "Fastway Australia",
1525
- "other_name": "Fastway Couriers",
1526
- "required_fields": []
1527
  },
1528
  {
1529
- "slug": "fastway-ireland",
1530
- "name": "Fastway Ireland",
1531
- "other_name": "Fastway Couriers",
1532
- "required_fields": []
1533
  },
1534
  {
1535
- "slug": "fastway-nz",
1536
- "name": "Fastway New Zealand",
1537
- "other_name": "",
1538
- "required_fields": []
1539
  },
1540
  {
1541
- "slug": "fastway-za",
1542
- "name": "Fastway South Africa",
1543
- "other_name": "Fastway Couriers",
1544
- "required_fields": []
1545
  },
1546
  {
1547
- "slug": "fedex",
1548
- "name": "FedEx",
1549
- "other_name": "Federal Express",
1550
- "required_fields": []
1551
  },
1552
  {
1553
- "slug": "fedex-crossborder",
1554
- "name": "Fedex Cross Border",
1555
- "other_name": "",
1556
- "required_fields": []
1557
  },
1558
  {
1559
- "slug": "fedex-fims",
1560
- "name": "FedEx International MailService",
1561
- "other_name": "",
1562
- "required_fields": []
1563
  },
1564
  {
1565
- "slug": "fedex-freight",
1566
- "name": "FedEx Freight",
1567
- "other_name": "FedEx LTL",
1568
- "required_fields": []
1569
  },
1570
  {
1571
- "slug": "fedex-uk",
1572
- "name": "FedEx UK",
1573
- "other_name": "FedEx United Kingdom",
1574
- "required_fields": []
1575
  },
1576
  {
1577
- "slug": "fercam",
1578
- "name": "FERCAM Logistics & Transport",
1579
- "other_name": "FERCAM SpA",
1580
- "required_fields": []
1581
  },
1582
  {
1583
- "slug": "fetchr",
1584
- "name": "Fetchr",
1585
- "other_name": "",
1586
- "required_fields": []
1587
  },
1588
  {
1589
- "slug": "fetchr-webhook",
1590
- "name": "Mena 360 (Fetchr)",
1591
- "other_name": "",
1592
- "required_fields": []
1593
  },
1594
  {
1595
- "slug": "first-flight",
1596
- "name": "First Flight Couriers",
1597
- "other_name": "FirstFlight India",
1598
- "required_fields": []
1599
  },
1600
  {
1601
- "slug": "first-logistics",
1602
- "name": "First Logistics",
1603
- "other_name": "PT Synergy First Logistics",
1604
- "required_fields": []
1605
  },
1606
  {
1607
- "slug": "firstmile",
1608
- "name": "FirstMile",
1609
- "other_name": "",
1610
- "required_fields": []
1611
  },
1612
  {
1613
- "slug": "fitzmark-api",
1614
- "name": "FitzMark",
1615
- "other_name": "",
1616
- "required_fields": []
 
 
1617
  },
1618
  {
1619
- "slug": "flytexpress",
1620
- "name": "Flyt Express",
1621
- "other_name": "飞特物流",
1622
- "required_fields": []
1623
  },
1624
  {
1625
- "slug": "fmx",
1626
- "name": "FMX",
1627
- "other_name": "",
1628
- "required_fields": []
1629
  },
1630
  {
1631
- "slug": "fonsen",
1632
- "name": "Fonsen Logistics",
1633
- "other_name": "",
1634
- "required_fields": []
1635
  },
1636
  {
1637
- "slug": "forrun",
1638
- "name": "forrun Pvt Ltd (Arpatech Venture)",
1639
- "other_name": "",
1640
- "required_fields": []
1641
  },
1642
  {
1643
- "slug": "freterapido",
1644
- "name": "Frete Rápido",
1645
- "other_name": "",
1646
- "required_fields": []
1647
  },
1648
  {
1649
- "slug": "gati-kwe",
1650
- "name": "Gati-KWE",
1651
- "other_name": "Gati-Kintetsu Express",
1652
- "required_fields": []
1653
  },
1654
  {
1655
- "slug": "gba",
1656
- "name": "GBA Services Ltd",
1657
- "other_name": "",
1658
- "required_fields": []
1659
  },
1660
  {
1661
- "slug": "gdex",
1662
- "name": "GDEX",
1663
- "other_name": "GD Express",
1664
- "required_fields": []
1665
  },
1666
  {
1667
- "slug": "gemworldwide",
1668
- "name": "GEM Worldwide",
1669
- "other_name": "",
1670
- "required_fields": []
1671
  },
1672
  {
1673
- "slug": "general-overnight",
1674
- "name": "Go!Express and logistics",
1675
- "other_name": "",
1676
- "required_fields": []
1677
  },
1678
  {
1679
- "slug": "geodis-calberson-fr",
1680
- "name": "GEODIS - Distribution & Express",
1681
- "other_name": "Geodiscalberson",
1682
- "required_fields": [
1683
- "tracking_postal_code"
1684
- ]
1685
  },
1686
  {
1687
- "slug": "geodis-espace",
1688
- "name": "Geodis E-space",
1689
- "other_name": "Geodis Distribution & Express",
1690
- "required_fields": [
1691
- "tracking_key"
1692
- ]
1693
  },
1694
  {
1695
- "slug": "ghn",
1696
- "name": "Giao hàng nhanh",
1697
- "other_name": "Giaohangnhanh.vn, GHN",
1698
- "required_fields": []
1699
  },
1700
  {
1701
- "slug": "globaltranz",
1702
- "name": "GlobalTranz",
1703
- "other_name": "",
1704
- "required_fields": []
1705
  },
1706
  {
1707
- "slug": "globegistics",
1708
- "name": "Globegistics Inc.",
1709
- "other_name": "",
1710
- "required_fields": []
1711
  },
1712
  {
1713
- "slug": "gls",
1714
- "name": "GLS",
1715
- "other_name": "General Logistics Systems",
1716
- "required_fields": []
1717
  },
1718
  {
1719
- "slug": "gls-croatia",
1720
- "name": "GLS Croatia",
1721
- "other_name": "",
1722
- "required_fields": []
1723
  },
1724
  {
1725
- "slug": "gls-cz",
1726
- "name": "GLS Czech Republic",
1727
- "other_name": "",
1728
- "required_fields": []
1729
  },
1730
  {
1731
- "slug": "gls-italy",
1732
- "name": "GLS Italy",
1733
- "other_name": "GLS Corriere Espresso",
1734
- "required_fields": []
1735
  },
1736
  {
1737
- "slug": "gls-netherlands",
1738
- "name": "GLS Netherlands",
1739
- "other_name": "GLS NL",
1740
- "required_fields": [
1741
- "tracking_postal_code"
1742
- ]
1743
  },
1744
  {
1745
- "slug": "gls-slovakia",
1746
- "name": "GLS General Logistics Systems Slovakia s.r.o.",
1747
- "other_name": "",
1748
- "required_fields": []
1749
  },
1750
  {
1751
- "slug": "gls-slovenia",
1752
- "name": "GLS Slovenia",
1753
- "other_name": "",
1754
- "required_fields": []
1755
  },
1756
  {
1757
- "slug": "gls-spain",
1758
- "name": "GLS Spain",
1759
- "other_name": "",
1760
- "required_fields": [
1761
- "tracking_key"
1762
- ]
1763
  },
1764
  {
1765
- "slug": "gofly",
1766
- "name": "GoFly",
1767
- "other_name": "GoFlyi",
1768
- "required_fields": []
1769
  },
1770
  {
1771
- "slug": "gojavas",
1772
- "name": "GoJavas",
1773
- "other_name": "Javas",
1774
- "required_fields": []
1775
  },
1776
  {
1777
- "slug": "greyhound",
1778
- "name": "Greyhound",
1779
- "other_name": "Greyhound Package Express",
1780
- "required_fields": []
1781
  },
1782
  {
1783
- "slug": "gsi-express",
1784
- "name": "GSI EXPRESS",
1785
- "other_name": "",
1786
- "required_fields": []
1787
  },
1788
  {
1789
- "slug": "gso",
1790
- "name": "GSO",
1791
- "other_name": "GSO Freight",
1792
- "required_fields": []
1793
  },
1794
  {
1795
- "slug": "hct-logistics",
1796
- "name": "HCT LOGISTICS CO.LTD.",
1797
- "other_name": "",
1798
- "required_fields": []
1799
  },
1800
  {
1801
- "slug": "hdb",
1802
- "name": "Haidaibao",
1803
- "other_name": "",
1804
- "required_fields": []
1805
  },
1806
  {
1807
- "slug": "hdb-box",
1808
- "name": "Haidaibao",
1809
- "other_name": "",
1810
- "required_fields": []
1811
  },
1812
  {
1813
- "slug": "hermes",
1814
- "name": "Hermesworld",
1815
- "other_name": "Hermes-europe UK",
1816
- "required_fields": []
1817
  },
1818
  {
1819
- "slug": "hermes-de",
1820
- "name": "Hermes Germany",
1821
- "other_name": "myhermes.de, Hermes Logistik Gruppe Deutschland",
1822
- "required_fields": []
1823
  },
1824
  {
1825
- "slug": "hermes-it",
1826
- "name": "Hermes Italy",
1827
- "other_name": "",
1828
- "required_fields": []
1829
  },
1830
  {
1831
- "slug": "heyworld",
1832
- "name": "Heyworld",
1833
- "other_name": null,
1834
- "required_fields": []
1835
  },
1836
  {
1837
- "slug": "hh-exp",
1838
- "name": "Hua Han Logistics",
1839
- "other_name": "u534eu7ff0u56fdu9645u7269u6d41",
1840
- "required_fields": []
1841
  },
1842
  {
1843
- "slug": "hipshipper",
1844
- "name": "Hipshipper",
1845
- "other_name": "",
1846
- "required_fields": []
1847
  },
1848
  {
1849
- "slug": "holisol",
1850
- "name": "Holisol",
1851
- "other_name": "",
1852
- "required_fields": []
1853
  },
1854
  {
1855
- "slug": "hong-kong-post",
1856
- "name": "Hong Kong Post",
1857
- "other_name": "香港郵政",
1858
- "required_fields": []
1859
  },
1860
  {
1861
- "slug": "hrvatska-posta",
1862
- "name": "Hrvatska Pošta",
1863
- "other_name": "Croatia Post",
1864
- "required_fields": []
1865
  },
1866
  {
1867
- "slug": "hunter-express",
1868
- "name": "Hunter Express",
1869
- "other_name": "",
1870
- "required_fields": []
1871
  },
1872
  {
1873
- "slug": "huodull",
1874
- "name": "Huodull",
1875
- "other_name": "货兜",
1876
- "required_fields": []
1877
  },
1878
  {
1879
- "slug": "hx-express",
1880
- "name": "HX Express",
1881
- "other_name": "",
1882
- "required_fields": []
1883
  },
1884
  {
1885
- "slug": "i-dika",
1886
- "name": "i-dika",
1887
- "other_name": "",
1888
- "required_fields": []
1889
  },
1890
  {
1891
- "slug": "i-parcel",
1892
- "name": "i-parcel",
1893
- "other_name": "iparcel",
1894
- "required_fields": []
1895
  },
1896
  {
1897
- "slug": "idexpress",
1898
- "name": "IDEX",
1899
- "other_name": "上海宏杉国际物流",
1900
- "required_fields": []
1901
  },
1902
  {
1903
- "slug": "ids-logistics",
1904
- "name": "IDS Logistics",
1905
- "other_name": "",
1906
- "required_fields": []
1907
  },
1908
  {
1909
- "slug": "imexglobalsolutions",
1910
- "name": "IMEX Global Solutions",
1911
- "other_name": "",
1912
- "required_fields": []
1913
  },
1914
  {
1915
- "slug": "imxmail",
1916
- "name": "IMX Mail",
1917
- "other_name": "IMX International Mail Consolidator",
1918
- "required_fields": []
1919
  },
1920
  {
1921
- "slug": "india-post",
1922
- "name": "India Post Domestic",
1923
- "other_name": "भारतीय डाक",
1924
- "required_fields": []
1925
  },
1926
  {
1927
- "slug": "india-post-int",
1928
- "name": "India Post International",
1929
- "other_name": "भारतीय डाक, Speed Post & eMO, EMS, IPS Web",
1930
- "required_fields": []
1931
  },
1932
  {
1933
- "slug": "inexpost",
1934
- "name": "Inexpost",
1935
- "other_name": "",
1936
- "required_fields": []
 
 
1937
  },
1938
  {
1939
- "slug": "inpost-paczkomaty",
1940
- "name": "InPost Paczkomaty",
1941
- "other_name": "",
1942
- "required_fields": []
1943
  },
1944
  {
1945
- "slug": "instant",
1946
- "name": "INSTANT (Tiong Nam Ebiz Express Sdn Bhd)",
1947
- "other_name": "",
1948
- "required_fields": []
1949
  },
1950
  {
1951
- "slug": "intel-valley",
1952
- "name": "Intel-Valley Supply chain (ShenZhen) Co. Ltd",
1953
- "other_name": "智谷供应链(深圳)有限公司",
1954
- "required_fields": []
1955
  },
1956
  {
1957
- "slug": "intelipost",
1958
- "name": "Intelipost (TMS for LATAM)",
1959
- "other_name": "",
1960
- "required_fields": []
1961
  },
1962
  {
1963
- "slug": "interlink-express",
1964
- "name": "DPD Local",
1965
- "other_name": "Interlink UK",
1966
- "required_fields": []
1967
  },
1968
  {
1969
- "slug": "interlink-express-reference",
1970
- "name": "DPD Local reference",
1971
- "other_name": "",
1972
- "required_fields": [
1973
- "tracking_postal_code"
1974
- ]
1975
  },
1976
  {
1977
- "slug": "international-seur",
1978
- "name": "International Seur",
1979
- "other_name": "SEUR Internacional",
1980
- "required_fields": []
1981
  },
1982
  {
1983
- "slug": "intexpress",
1984
- "name": "Internet Express",
1985
- "other_name": "",
1986
- "required_fields": []
1987
  },
1988
  {
1989
- "slug": "israel-post",
1990
- "name": "Israel Post",
1991
- "other_name": "חברת דואר ישראל",
1992
- "required_fields": []
1993
  },
1994
  {
1995
- "slug": "israel-post-domestic",
1996
- "name": "Israel Post Domestic",
1997
- "other_name": "חברת דואר ישראל מקומית",
1998
- "required_fields": []
1999
  },
2000
  {
2001
- "slug": "italy-sda",
2002
- "name": "Italy SDA",
2003
- "other_name": "SDA Express Courier",
2004
- "required_fields": []
 
 
2005
  },
2006
  {
2007
- "slug": "j-net",
2008
- "name": "J-Net",
2009
- "other_name": "",
2010
- "required_fields": []
2011
  },
2012
  {
2013
- "slug": "jam-express",
2014
- "name": "Jam Express",
2015
- "other_name": "JAM Global Express",
2016
- "required_fields": []
2017
  },
2018
  {
2019
- "slug": "janco",
2020
- "name": "Janco Ecommerce",
2021
- "other_name": "",
2022
- "required_fields": []
 
 
2023
  },
2024
  {
2025
- "slug": "janio",
2026
- "name": "Janio Asia",
2027
- "other_name": "",
2028
- "required_fields": []
2029
  },
2030
  {
2031
- "slug": "japan-post",
2032
- "name": "Japan Post",
2033
- "other_name": "日本郵便",
2034
- "required_fields": []
2035
  },
2036
  {
2037
- "slug": "jayonexpress",
2038
- "name": "Jayon Express (JEX)",
2039
- "other_name": "",
2040
- "required_fields": []
2041
  },
2042
  {
2043
- "slug": "jcex",
2044
- "name": "JCEX",
2045
- "other_name": "JiaCheng, 杭州佳成",
2046
- "required_fields": []
2047
  },
2048
  {
2049
- "slug": "jersey-post",
2050
- "name": "Jersey Post",
2051
- "other_name": "",
2052
- "required_fields": []
2053
  },
2054
  {
2055
- "slug": "jet-ship",
2056
- "name": "Jet-Ship Worldwide",
2057
- "other_name": "",
2058
- "required_fields": []
2059
  },
2060
  {
2061
- "slug": "jinsung",
2062
- "name": "JINSUNG TRADING",
2063
- "other_name": "",
2064
- "required_fields": []
2065
  },
2066
  {
2067
- "slug": "jne",
2068
- "name": "JNE",
2069
- "other_name": "Express Across Nation, Tiki Jalur Nugraha Ekakurir",
2070
- "required_fields": []
2071
  },
2072
  {
2073
- "slug": "jne-api",
2074
- "name": "JNE",
2075
- "other_name": "",
2076
- "required_fields": []
2077
  },
2078
  {
2079
- "slug": "jocom",
2080
- "name": "Jocom",
2081
- "other_name": "",
2082
- "required_fields": []
2083
  },
2084
  {
2085
- "slug": "jtexpress",
2086
- "name": "J&T EXPRESS MALAYSIA",
2087
- "other_name": "",
2088
- "required_fields": []
2089
  },
2090
  {
2091
- "slug": "jx",
2092
- "name": "JX",
2093
- "other_name": "",
2094
- "required_fields": []
2095
  },
2096
  {
2097
- "slug": "k1-express",
2098
- "name": "K1 Express",
2099
- "other_name": "",
2100
- "required_fields": []
2101
  },
2102
  {
2103
- "slug": "kangaroo-my",
2104
- "name": "Kangaroo Worldwide Express",
2105
- "other_name": "",
2106
- "required_fields": []
2107
  },
2108
  {
2109
- "slug": "kerry-logistics",
2110
- "name": "Kerry Express Thailand",
2111
- "other_name": "嘉里物流, Kerry Logistics",
2112
- "required_fields": []
2113
  },
2114
  {
2115
- "slug": "kerrytj",
2116
- "name": "Kerry TJ Logistics",
2117
- "other_name": "KTJ嘉里大榮物流",
2118
- "required_fields": []
2119
  },
2120
  {
2121
- "slug": "kerryttc-vn",
2122
- "name": "Kerry Express (Vietnam) Co Ltd",
2123
- "other_name": "KTTC",
2124
- "required_fields": []
2125
  },
2126
  {
2127
- "slug": "kgmhub",
2128
- "name": "KGM Hub",
2129
- "other_name": "KGM",
2130
- "required_fields": []
2131
  },
2132
  {
2133
- "slug": "kiala",
2134
- "name": "Kiala",
2135
- "other_name": "",
2136
- "required_fields": []
2137
  },
2138
  {
2139
- "slug": "kn",
2140
- "name": "Kuehne + Nagel",
2141
- "other_name": "KN",
2142
- "required_fields": []
2143
  },
2144
  {
2145
- "slug": "knuk",
2146
- "name": "KNAirlink Aerospace Domestic Network",
2147
- "other_name": "",
2148
- "required_fields": []
2149
  },
2150
  {
2151
- "slug": "korea-post",
2152
- "name": "Korea Post EMS",
2153
- "other_name": "우정사업본부",
2154
- "required_fields": []
2155
  },
2156
  {
2157
- "slug": "kpost",
2158
- "name": "Korea Post",
2159
- "other_name": "우정사업본부",
2160
- "required_fields": []
2161
  },
2162
  {
2163
- "slug": "kronos",
2164
- "name": "Kronos Express",
2165
- "other_name": "",
2166
- "required_fields": []
2167
  },
2168
  {
2169
- "slug": "kurasi",
2170
- "name": "KURASI",
2171
- "other_name": "",
2172
- "required_fields": []
2173
  },
2174
  {
2175
- "slug": "kwt",
2176
- "name": "Shenzhen Jinghuada Logistics Co., Ltd",
2177
- "other_name": "KWT",
2178
- "required_fields": []
2179
  },
2180
  {
2181
- "slug": "ky-express",
2182
- "name": "Kua Yue Express",
2183
- "other_name": "KYE",
2184
- "required_fields": []
2185
  },
2186
  {
2187
- "slug": "la-poste-colissimo",
2188
- "name": "La Poste",
2189
- "other_name": "Coliposte",
2190
- "required_fields": []
2191
  },
2192
  {
2193
- "slug": "lalamove",
2194
- "name": "Lalamove",
2195
- "other_name": "",
2196
- "required_fields": []
2197
  },
2198
  {
2199
- "slug": "landmark-global",
2200
- "name": "Landmark Global",
2201
- "other_name": "",
2202
- "required_fields": []
2203
  },
2204
  {
2205
- "slug": "landmark-global-reference",
2206
- "name": "Landmark Global Reference",
2207
- "other_name": "",
2208
- "required_fields": []
2209
  },
2210
  {
2211
- "slug": "lao-post",
2212
- "name": "Lao Post",
2213
- "other_name": "Laos Postal Service",
2214
- "required_fields": []
2215
  },
2216
  {
2217
- "slug": "lasership",
2218
- "name": "LaserShip",
2219
- "other_name": "LaserShip",
2220
- "required_fields": []
2221
  },
2222
  {
2223
- "slug": "latvijas-pasts",
2224
- "name": "Latvijas Pasts",
2225
- "other_name": "Latvijas Pasts",
2226
- "required_fields": []
2227
  },
2228
  {
2229
- "slug": "lbcexpress",
2230
- "name": "LBC Express",
2231
- "other_name": "LBC Express",
2232
- "required_fields": []
2233
  },
2234
  {
2235
- "slug": "legion-express",
2236
- "name": "Legion Express",
2237
- "other_name": "",
2238
- "required_fields": []
2239
  },
2240
  {
2241
- "slug": "lexship",
2242
- "name": "LexShip",
2243
- "other_name": "",
2244
- "required_fields": []
2245
  },
2246
  {
2247
- "slug": "lht-express",
2248
- "name": "LHT Express",
2249
- "other_name": "",
2250
- "required_fields": []
2251
  },
2252
  {
2253
- "slug": "liefery",
2254
- "name": "liefery",
2255
- "other_name": "",
2256
- "required_fields": []
 
 
2257
  },
2258
  {
2259
- "slug": "lietuvos-pastas",
2260
- "name": "Lietuvos Paštas",
2261
- "other_name": "Lithuania Post, LP Express",
2262
- "required_fields": []
2263
  },
2264
  {
2265
- "slug": "line",
2266
- "name": "Line Clear Express & Logistics Sdn Bhd",
2267
- "other_name": "",
2268
- "required_fields": []
 
 
2269
  },
2270
  {
2271
- "slug": "linkbridge",
2272
- "name": "Link Bridge(BeiJing)international logistics co.,ltd",
2273
- "other_name": "联博瑞翔(北京)国际物流股份有限公司",
2274
- "required_fields": []
2275
  },
2276
  {
2277
- "slug": "lion-parcel",
2278
- "name": "Lion Parcel",
2279
- "other_name": "",
2280
- "required_fields": []
2281
  },
2282
  {
2283
- "slug": "livrapide",
2284
- "name": "Livrapide",
2285
- "other_name": "",
2286
- "required_fields": []
2287
  },
2288
  {
2289
- "slug": "logicmena",
2290
- "name": "Logic Mena",
2291
- "other_name": "",
2292
- "required_fields": []
2293
  },
2294
  {
2295
- "slug": "logistyx-transgroup",
2296
- "name": "Transgroup",
2297
- "other_name": "",
2298
- "required_fields": []
2299
  },
2300
  {
2301
- "slug": "logwin-logistics",
2302
- "name": "Logwin Logistics",
2303
- "other_name": "",
2304
- "required_fields": []
2305
  },
2306
  {
2307
- "slug": "lonestar",
2308
- "name": "Lone Star Overnight",
2309
- "other_name": "",
2310
- "required_fields": []
2311
  },
2312
  {
2313
- "slug": "loomis-express",
2314
- "name": "Loomis Express",
2315
- "other_name": "",
2316
- "required_fields": []
2317
  },
2318
  {
2319
- "slug": "lotte",
2320
- "name": "Lotte Global Logistics",
2321
- "other_name": "",
2322
- "required_fields": []
2323
  },
2324
  {
2325
- "slug": "lwe-hk",
2326
- "name": "Logistic Worldwide Express",
2327
- "other_name": "LWE",
2328
- "required_fields": []
2329
  },
2330
  {
2331
- "slug": "m-xpress",
2332
- "name": "M Xpress Sdn Bhd",
2333
- "other_name": "",
2334
- "required_fields": []
2335
  },
2336
  {
2337
- "slug": "magyar-posta",
2338
- "name": "Magyar Posta",
2339
- "other_name": "Hungarian Post",
2340
- "required_fields": []
2341
  },
2342
  {
2343
- "slug": "mail-box-etc",
2344
- "name": "Mail Boxes Etc.",
2345
- "other_name": "",
2346
- "required_fields": []
2347
  },
2348
  {
2349
- "slug": "mailamericas",
2350
- "name": "MailAmericas",
2351
- "other_name": "",
2352
- "required_fields": []
2353
  },
2354
  {
2355
- "slug": "mailplus",
2356
- "name": "MailPlus",
2357
- "other_name": "",
2358
- "required_fields": []
2359
  },
2360
  {
2361
- "slug": "mailplus-jp",
2362
- "name": "MailPlus",
2363
- "other_name": "",
2364
- "required_fields": []
2365
  },
2366
  {
2367
- "slug": "mainfreight",
2368
- "name": "Mainfreight",
2369
- "other_name": "",
2370
- "required_fields": []
2371
  },
2372
  {
2373
- "slug": "mainway",
2374
- "name": "Mainway",
2375
- "other_name": "",
2376
- "required_fields": []
2377
  },
2378
  {
2379
- "slug": "malaysia-post",
2380
- "name": "Malaysia Post EMS / Pos Laju",
2381
- "other_name": "Pos Ekspres, Pos Malaysia Express",
2382
- "required_fields": []
2383
  },
2384
  {
2385
- "slug": "malaysia-post-posdaftar",
2386
- "name": "Malaysia Post - Registered",
2387
- "other_name": "PosDaftar",
2388
- "required_fields": []
2389
  },
2390
  {
2391
- "slug": "mara-xpress",
2392
- "name": "Mara Xpress",
2393
- "other_name": "",
2394
- "required_fields": []
2395
  },
2396
  {
2397
- "slug": "matdespatch",
2398
- "name": "Matdespatch",
2399
- "other_name": "",
2400
- "required_fields": []
2401
  },
2402
  {
2403
- "slug": "matkahuolto",
2404
- "name": "Matkahuolto",
2405
- "other_name": "Oy Matkahuolto Ab",
2406
- "required_fields": []
2407
  },
2408
  {
2409
- "slug": "mazet",
2410
- "name": "Groupe Mazet",
2411
- "other_name": "",
2412
- "required_fields": []
2413
  },
2414
  {
2415
- "slug": "megasave",
2416
- "name": "Megasave",
2417
- "other_name": "",
2418
- "required_fields": []
2419
  },
2420
  {
2421
- "slug": "mexico-redpack",
2422
- "name": "Mexico Redpack",
2423
- "other_name": "TNT Mexico",
2424
- "required_fields": []
2425
  },
2426
  {
2427
- "slug": "mexico-senda-express",
2428
- "name": "Mexico Senda Express",
2429
- "other_name": "Mexico Senda Express",
2430
- "required_fields": []
2431
  },
2432
  {
2433
- "slug": "mglobal",
2434
- "name": "PT MGLOBAL LOGISTICS INDONESIA",
2435
- "other_name": "",
2436
- "required_fields": []
2437
  },
2438
  {
2439
- "slug": "midland",
2440
- "name": "Midland",
2441
- "other_name": "",
2442
- "required_fields": []
2443
  },
2444
  {
2445
- "slug": "mikropakket",
2446
- "name": "Mikropakket",
2447
- "other_name": "",
2448
- "required_fields": [
2449
- "tracking_postal_code"
2450
- ]
2451
  },
2452
  {
2453
- "slug": "milkman",
2454
- "name": "Milkman",
2455
- "other_name": "",
2456
- "required_fields": []
2457
  },
2458
  {
2459
- "slug": "misumi-cn",
2460
- "name": "MISUMI Group Inc.",
2461
- "other_name": "",
2462
- "required_fields": []
2463
  },
2464
  {
2465
- "slug": "mondialrelay",
2466
- "name": "Mondial Relay",
2467
- "other_name": "Mondial Relay France",
2468
- "required_fields": [
2469
- "tracking_postal_code"
2470
- ]
2471
  },
2472
  {
2473
- "slug": "mrw-spain",
2474
- "name": "MRW",
2475
- "other_name": "MRW Spain",
2476
- "required_fields": []
2477
  },
2478
  {
2479
- "slug": "mudita",
2480
- "name": "MUDITA",
2481
- "other_name": "",
2482
- "required_fields": []
2483
  },
2484
  {
2485
- "slug": "mx-cargo",
2486
- "name": "M&X cargo",
2487
- "other_name": "M&X International Shipping Agency Co.,LTD",
2488
- "required_fields": []
2489
  },
2490
  {
2491
- "slug": "mxe",
2492
- "name": "MXE Express",
2493
- "other_name": "上海淼信货运代理有限公司",
2494
- "required_fields": []
2495
  },
2496
  {
2497
- "slug": "myhermes-uk",
2498
- "name": "myHermes UK",
2499
- "other_name": "",
2500
- "required_fields": []
2501
  },
2502
  {
2503
- "slug": "mypostonline",
2504
- "name": "Mypostonline",
2505
- "other_name": "MYBOXPOST",
2506
- "required_fields": []
2507
  },
2508
  {
2509
- "slug": "nacex",
2510
- "name": "NACEX",
2511
- "other_name": "",
2512
- "required_fields": [
2513
- "tracking_account_number"
2514
- ]
2515
  },
2516
  {
2517
- "slug": "nacex-spain",
2518
- "name": "NACEX Spain",
2519
- "other_name": "NACEX Logista",
2520
- "required_fields": [
2521
- "tracking_postal_code"
2522
- ]
2523
  },
2524
  {
2525
- "slug": "nanjingwoyuan",
2526
- "name": "Nanjing Woyuan",
2527
- "other_name": "u6c83u6e90",
2528
- "required_fields": []
2529
  },
2530
  {
2531
- "slug": "naqel-express",
2532
- "name": "Naqel Express",
2533
- "other_name": "",
2534
- "required_fields": []
2535
  },
2536
  {
2537
- "slug": "national-sameday",
2538
- "name": "National Sameday",
2539
- "other_name": "",
2540
- "required_fields": []
2541
  },
2542
  {
2543
- "slug": "nationwide-my",
2544
- "name": "Nationwide Express",
2545
- "other_name": "nationwide2u",
2546
- "required_fields": []
2547
  },
2548
  {
2549
- "slug": "new-zealand-post",
2550
- "name": "New Zealand Post",
2551
- "other_name": "NZ Post",
2552
- "required_fields": []
2553
  },
2554
  {
2555
- "slug": "neway",
2556
- "name": "Neway Transport",
2557
- "other_name": "",
2558
- "required_fields": []
2559
  },
2560
  {
2561
- "slug": "newgistics",
2562
- "name": "Newgistics",
2563
- "other_name": "",
2564
- "required_fields": []
2565
  },
2566
  {
2567
- "slug": "newgisticsapi",
2568
- "name": "Newgistics API",
2569
- "other_name": "",
2570
- "required_fields": []
2571
  },
2572
  {
2573
- "slug": "newzealand-couriers",
2574
- "name": "NEW ZEALAND COURIERS",
2575
- "other_name": "",
2576
- "required_fields": [
2577
- "tracking_account_number"
2578
- ]
2579
  },
2580
  {
2581
- "slug": "nhans-solutions",
2582
- "name": "Nhans Solutions",
2583
- "other_name": "Nhans Courier",
2584
- "required_fields": []
2585
  },
2586
  {
2587
- "slug": "nightline",
2588
- "name": "Nightline",
2589
- "other_name": "",
2590
- "required_fields": []
2591
  },
2592
  {
2593
- "slug": "nim-express",
2594
- "name": "Nim Express",
2595
- "other_name": "Armadillio Express",
2596
- "required_fields": []
2597
  },
2598
  {
2599
- "slug": "ninjavan",
2600
- "name": "Ninja Van",
2601
- "other_name": "",
2602
- "required_fields": []
2603
  },
2604
  {
2605
- "slug": "ninjavan-id",
2606
- "name": "Ninja Van Indonesia",
2607
- "other_name": "NinjaVan Indonesia",
2608
- "required_fields": []
2609
  },
2610
  {
2611
- "slug": "ninjavan-my",
2612
- "name": "Ninja Van Malaysia",
2613
- "other_name": "NinjaVan MY",
2614
- "required_fields": []
2615
  },
2616
  {
2617
- "slug": "ninjavan-philippines",
2618
- "name": "Ninja Van Philippines",
2619
- "other_name": "",
2620
- "required_fields": []
2621
  },
2622
  {
2623
- "slug": "ninjavan-thai",
2624
- "name": "Ninja Van Thailand",
2625
- "other_name": "",
2626
- "required_fields": []
2627
  },
2628
  {
2629
- "slug": "nipost",
2630
- "name": "NiPost",
2631
- "other_name": "Nigerian Postal Service",
2632
- "required_fields": []
2633
  },
2634
  {
2635
- "slug": "norsk-global",
2636
- "name": "Norsk Global",
2637
- "other_name": "Norsk European Wholesale",
2638
- "required_fields": []
2639
  },
2640
  {
2641
- "slug": "nova-poshta",
2642
- "name": "Nova Poshta",
2643
- "other_name": "Новая Почта",
2644
- "required_fields": []
2645
  },
2646
  {
2647
- "slug": "nova-poshtaint",
2648
- "name": "Nova Poshta (International)",
2649
- "other_name": "Новая Почта",
2650
- "required_fields": []
2651
  },
2652
  {
2653
- "slug": "nowlog-api",
2654
- "name": "NOWLOG LOGISTICA INTELIGENTE LTD",
2655
- "other_name": "",
2656
- "required_fields": []
2657
  },
2658
  {
2659
- "slug": "ntl",
2660
- "name": "NTL logistics",
2661
- "other_name": "",
2662
- "required_fields": []
2663
  },
2664
  {
2665
- "slug": "oca-ar",
2666
- "name": "OCA Argentina",
2667
- "other_name": "OCA e-Pak",
2668
- "required_fields": []
2669
  },
2670
  {
2671
- "slug": "ocs",
2672
- "name": "OCS ANA Group",
2673
- "other_name": "",
2674
- "required_fields": []
2675
  },
2676
  {
2677
- "slug": "ocs-worldwide",
2678
- "name": "OCS WORLDWIDE",
2679
- "other_name": "",
2680
- "required_fields": []
2681
  },
2682
  {
2683
- "slug": "okayparcel",
2684
- "name": "OkayParcel",
2685
- "other_name": "",
2686
- "required_fields": []
2687
  },
2688
  {
2689
- "slug": "old-dominion",
2690
- "name": "Old Dominion Freight Line",
2691
- "other_name": "ODFL",
2692
- "required_fields": []
2693
  },
2694
  {
2695
- "slug": "omniparcel",
2696
- "name": "Omni Parcel",
2697
- "other_name": "Omni-Channel Logistics (Seko)",
2698
- "required_fields": []
2699
  },
2700
  {
2701
- "slug": "omniva",
2702
- "name": "Omniva",
2703
- "other_name": "",
2704
- "required_fields": []
2705
  },
2706
  {
2707
- "slug": "oneworldexpress",
2708
- "name": "One World Express",
2709
- "other_name": "u6613u65f6u9039u7269u6d41",
2710
- "required_fields": []
2711
  },
2712
  {
2713
- "slug": "ontrac",
2714
- "name": "OnTrac",
2715
- "other_name": "OnTrac Shipping",
2716
- "required_fields": []
2717
  },
2718
  {
2719
- "slug": "opek",
2720
- "name": "FedEx Poland Domestic",
2721
- "other_name": "OPEK",
2722
- "required_fields": []
2723
  },
2724
  {
2725
- "slug": "osm-worldwide",
2726
- "name": "OSM Worldwide",
2727
- "other_name": "",
2728
- "required_fields": []
2729
  },
2730
  {
2731
- "slug": "paack-webhook",
2732
- "name": "Paack",
2733
- "other_name": "",
2734
- "required_fields": []
2735
  },
2736
  {
2737
- "slug": "packlink",
2738
- "name": "Packlink",
2739
- "other_name": "Packlink Spain",
2740
- "required_fields": []
2741
  },
2742
  {
2743
- "slug": "palexpress",
2744
- "name": "PAL Express Limited",
2745
- "other_name": "",
2746
- "required_fields": []
2747
  },
2748
  {
2749
- "slug": "palletways",
2750
- "name": "Palletways",
2751
- "other_name": "",
2752
- "required_fields": [
2753
- "tracking_postal_code"
2754
- ]
2755
  },
2756
  {
2757
- "slug": "pandulogistics",
2758
- "name": "Pandu Logistics",
2759
- "other_name": "",
2760
- "required_fields": []
2761
  },
2762
  {
2763
- "slug": "panther",
2764
- "name": "Panther",
2765
- "other_name": "Panther Group UK",
2766
- "required_fields": []
2767
  },
2768
  {
2769
- "slug": "panther-order-number",
2770
- "name": "Panther Order Number",
2771
- "other_name": "Panther Group UK",
2772
- "required_fields": [
2773
- "tracking_postal_code"
2774
- ]
2775
  },
2776
  {
2777
- "slug": "panther-reference",
2778
- "name": "Panther Reference",
2779
- "other_name": "Panther Group UK",
2780
- "required_fields": [
2781
- "tracking_account_number"
2782
- ]
2783
  },
2784
  {
2785
- "slug": "paper-express",
2786
- "name": "Paper Express",
2787
- "other_name": "",
2788
- "required_fields": [
2789
- "tracking_postal_code"
2790
- ]
2791
  },
2792
  {
2793
- "slug": "paperfly",
2794
- "name": "Paperfly Private Limited",
2795
- "other_name": "",
2796
- "required_fields": []
2797
  },
2798
  {
2799
- "slug": "paquetexpress",
2800
- "name": "Paquetexpress",
2801
- "other_name": "",
2802
- "required_fields": []
2803
  },
2804
  {
2805
- "slug": "parcel-force",
2806
- "name": "Parcel Force",
2807
- "other_name": "Parcelforce UK",
2808
- "required_fields": []
2809
  },
2810
  {
2811
- "slug": "parcel2go",
2812
- "name": "Parcel2Go",
2813
- "other_name": "",
2814
- "required_fields": []
 
 
2815
  },
2816
  {
2817
- "slug": "parcelled-in",
2818
- "name": "Parcelled.in",
2819
- "other_name": "Parcelled",
2820
- "required_fields": []
 
 
2821
  },
2822
  {
2823
- "slug": "parcelpoint",
2824
- "name": "ParcelPoint Pty Ltd",
2825
- "other_name": "",
2826
- "required_fields": [
2827
- "tracking_key"
2828
- ]
2829
  },
2830
  {
2831
- "slug": "parcelpost-sg",
2832
- "name": "Parcel Post Singapore",
2833
- "other_name": "ParcelPost",
2834
- "required_fields": []
2835
  },
2836
  {
2837
- "slug": "parknparcel",
2838
- "name": "Park N Parcel",
2839
- "other_name": "",
2840
- "required_fields": []
 
 
2841
  },
2842
  {
2843
- "slug": "pfcexpress",
2844
- "name": "PFC Express",
2845
- "other_name": "PFCu7687u5bb6u7269u6d41",
2846
- "required_fields": []
2847
  },
2848
  {
2849
- "slug": "pickup",
2850
- "name": "Pickupp",
2851
- "other_name": "",
2852
- "required_fields": []
2853
  },
2854
  {
2855
- "slug": "pickupp-mys",
2856
- "name": "PICK UPP",
2857
- "other_name": "",
2858
- "required_fields": []
2859
  },
2860
  {
2861
- "slug": "pickupp-sgp",
2862
- "name": "PICK UPP",
2863
- "other_name": "",
2864
- "required_fields": []
2865
  },
2866
  {
2867
- "slug": "pickupp-vnm",
2868
- "name": "Pickupp Vietnam",
2869
- "other_name": "",
2870
- "required_fields": []
2871
  },
2872
  {
2873
- "slug": "pil-logistics",
2874
- "name": "PIL Logistics (China) Co., Ltd",
2875
- "other_name": "",
2876
- "required_fields": []
2877
  },
2878
  {
2879
- "slug": "pilot-freight",
2880
- "name": "Pilot Freight Services",
2881
- "other_name": "",
2882
- "required_fields": []
2883
  },
2884
  {
2885
- "slug": "pioneer-logistics",
2886
- "name": "Pioneer Logistics Systems, Inc.",
2887
- "other_name": "",
2888
- "required_fields": []
2889
  },
2890
  {
2891
- "slug": "pitney-bowes",
2892
- "name": "Pitney Bowes",
2893
- "other_name": "",
2894
- "required_fields": []
 
 
2895
  },
2896
  {
2897
- "slug": "pittohio",
2898
- "name": "PITT OHIO",
2899
- "other_name": "",
2900
- "required_fields": []
 
 
2901
  },
2902
  {
2903
- "slug": "pixsell",
2904
- "name": "PIXSELL LOGISTICS",
2905
- "other_name": "",
2906
- "required_fields": []
2907
  },
2908
  {
2909
- "slug": "planzer",
2910
- "name": "Planzer Group",
2911
- "other_name": "",
2912
- "required_fields": [
2913
- "tracking_postal_code"
2914
- ]
2915
  },
2916
  {
2917
- "slug": "poczta-polska",
2918
- "name": "Poczta Polska",
2919
- "other_name": "Poland Post",
2920
- "required_fields": []
2921
  },
2922
  {
2923
- "slug": "pony-express",
2924
- "name": "Pony express",
2925
- "other_name": "",
2926
- "required_fields": []
2927
  },
2928
  {
2929
- "slug": "portugal-ctt",
2930
- "name": "Portugal CTT",
2931
- "other_name": "Correios de Portugal",
2932
- "required_fields": []
2933
  },
2934
  {
2935
- "slug": "portugal-seur",
2936
- "name": "Portugal Seur",
2937
- "other_name": "SEUR",
2938
- "required_fields": []
2939
  },
2940
  {
2941
- "slug": "pos-indonesia",
2942
- "name": "Pos Indonesia Domestic",
2943
- "other_name": "Indonesian Post Domestic",
2944
- "required_fields": []
2945
  },
2946
  {
2947
- "slug": "pos-indonesia-int",
2948
- "name": "Pos Indonesia International",
2949
- "other_name": "Indonesian Post International EMS",
2950
- "required_fields": []
2951
  },
2952
  {
2953
- "slug": "post-serbia",
2954
- "name": "Post Serbia",
2955
- "other_name": "Pou0161ta Srbije",
2956
- "required_fields": []
 
 
2957
  },
2958
  {
2959
- "slug": "post-slovenia",
2960
- "name": "Post of Slovenia",
2961
- "other_name": "",
2962
- "required_fields": []
2963
  },
2964
  {
2965
- "slug": "post56",
2966
- "name": "Post56",
2967
- "other_name": "捷邮快递",
2968
- "required_fields": []
2969
  },
2970
  {
2971
- "slug": "posta-romana",
2972
- "name": "Poșta Română",
2973
- "other_name": "Romania Post",
2974
- "required_fields": []
2975
  },
2976
  {
2977
- "slug": "poste-italiane",
2978
- "name": "Poste Italiane",
2979
- "other_name": "Italian Post",
2980
- "required_fields": []
2981
  },
2982
  {
2983
- "slug": "poste-italiane-paccocelere",
2984
- "name": "Poste Italiane Paccocelere",
2985
- "other_name": "Italian Post EMS / Express",
2986
- "required_fields": []
2987
  },
2988
  {
2989
- "slug": "posten-norge",
2990
- "name": "Posten Norge / Bring",
2991
- "other_name": "Norway Post, Norska Posten",
2992
- "required_fields": []
2993
  },
2994
  {
2995
- "slug": "posti",
2996
- "name": "Posti",
2997
- "other_name": "Finland Post",
2998
- "required_fields": []
2999
  },
3000
  {
3001
- "slug": "postnl",
3002
- "name": "PostNL Domestic",
3003
- "other_name": "PostNL Pakketten, TNT Post Netherlands",
3004
- "required_fields": [
3005
- "tracking_postal_code"
3006
- ]
3007
  },
3008
  {
3009
- "slug": "postnl-3s",
3010
- "name": "PostNL International 3S",
3011
- "other_name": "TNT Post parcel service United Kingdom",
3012
- "required_fields": [
3013
- "tracking_destination_country",
3014
- "tracking_postal_code"
3015
- ]
3016
  },
3017
  {
3018
- "slug": "postnl-international",
3019
- "name": "PostNL International",
3020
- "other_name": "Netherlands Post, Spring Global Mail",
3021
- "required_fields": []
3022
  },
3023
  {
3024
- "slug": "postnord",
3025
- "name": "PostNord Logistics",
3026
- "other_name": "Posten Norden",
3027
- "required_fields": []
3028
  },
3029
  {
3030
- "slug": "postur-is",
3031
- "name": "Iceland Post",
3032
- "other_name": "Postur.is, Íslandspóstur",
3033
- "required_fields": []
3034
  },
3035
  {
3036
- "slug": "ppbyb",
3037
- "name": "PayPal Package",
3038
- "other_name": "贝邮宝",
3039
- "required_fields": []
3040
  },
3041
  {
3042
- "slug": "professional-couriers",
3043
- "name": "Professional Couriers",
3044
- "other_name": "TPC India",
3045
- "required_fields": []
3046
  },
3047
  {
3048
- "slug": "ptt-posta",
3049
- "name": "PTT Posta",
3050
- "other_name": "Turkish Post",
3051
- "required_fields": []
3052
  },
3053
  {
3054
- "slug": "purolator",
3055
- "name": "Purolator",
3056
- "other_name": "Purolator Freight",
3057
- "required_fields": []
3058
  },
3059
  {
3060
- "slug": "purolator-international",
3061
- "name": "Purolator International",
3062
- "other_name": "",
3063
- "required_fields": []
3064
  },
3065
  {
3066
- "slug": "qualitypost",
3067
- "name": "QualityPost",
3068
- "other_name": "",
3069
- "required_fields": []
3070
  },
3071
  {
3072
- "slug": "quantium",
3073
- "name": "Quantium",
3074
- "other_name": "u51a0u5eadu7269u6d41",
3075
- "required_fields": []
3076
  },
3077
  {
3078
- "slug": "qxpress",
3079
- "name": "Qxpress",
3080
- "other_name": "Qxpress Qoo10",
3081
- "required_fields": []
3082
  },
3083
  {
3084
- "slug": "raben-group",
3085
- "name": "Raben Group",
3086
- "other_name": "myRaben",
3087
- "required_fields": []
3088
  },
3089
  {
3090
- "slug": "raf",
3091
- "name": "RAF Philippines",
3092
- "other_name": "RAF Int'l. Forwarding",
3093
- "required_fields": []
3094
  },
3095
  {
3096
- "slug": "raiderex",
3097
- "name": "RaidereX",
3098
- "other_name": "Detrack",
3099
- "required_fields": []
3100
  },
3101
  {
3102
- "slug": "ramgroup-za",
3103
- "name": "RAM",
3104
- "other_name": "RAM Group",
3105
- "required_fields": []
3106
  },
3107
  {
3108
- "slug": "rcl",
3109
- "name": "Red Carpet Logistics",
3110
- "other_name": "",
3111
- "required_fields": []
3112
  },
3113
  {
3114
- "slug": "redur-es",
3115
- "name": "Redur Spain",
3116
- "other_name": "Eurodis",
3117
- "required_fields": []
3118
  },
3119
  {
3120
- "slug": "relaiscolis",
3121
- "name": "Relais Colis",
3122
- "other_name": "",
3123
- "required_fields": [
3124
- "tracking_key"
3125
- ]
3126
  },
3127
  {
3128
- "slug": "rincos",
3129
- "name": "Rincos",
3130
- "other_name": "",
3131
- "required_fields": []
3132
  },
3133
  {
3134
- "slug": "rl-carriers",
3135
- "name": "RL Carriers",
3136
- "other_name": "R+L Carriers",
3137
- "required_fields": []
3138
  },
3139
  {
3140
- "slug": "roadbull",
3141
- "name": "Roadbull Logistics",
3142
- "other_name": "Roadbull Logistics Pte Ltd",
3143
- "required_fields": []
3144
  },
3145
  {
3146
- "slug": "rocketparcel",
3147
- "name": "Rocket Parcel International",
3148
- "other_name": "",
3149
- "required_fields": []
3150
  },
3151
  {
3152
- "slug": "royal-mail",
3153
- "name": "Royal Mail",
3154
- "other_name": "Royal Mail United Kingdom",
3155
- "required_fields": []
 
 
3156
  },
3157
  {
3158
- "slug": "rpd2man",
3159
- "name": "RPD2man Deliveries",
3160
- "other_name": "RPD-2man",
3161
- "required_fields": []
3162
  },
3163
  {
3164
- "slug": "rpx",
3165
- "name": "RPX Indonesia",
3166
- "other_name": "Repex Perdana International",
3167
- "required_fields": []
 
 
3168
  },
3169
  {
3170
- "slug": "rpxonline",
3171
- "name": "RPX Online",
3172
- "other_name": "Cathay Pacific",
3173
- "required_fields": []
3174
  },
3175
  {
3176
- "slug": "rrdonnelley",
3177
- "name": "RRD International Logistics U.S.A",
3178
- "other_name": "RRD",
3179
- "required_fields": []
3180
  },
3181
  {
3182
- "slug": "russian-post",
3183
- "name": "Russian Post",
3184
- "other_name": "Почта России, EMS Post RU",
3185
- "required_fields": []
3186
  },
3187
  {
3188
- "slug": "ruston",
3189
- "name": "Ruston",
3190
- "other_name": "",
3191
- "required_fields": []
 
 
3192
  },
3193
  {
3194
- "slug": "rzyexpress",
3195
- "name": "RZY Express",
3196
- "other_name": "RZYExpress",
3197
- "required_fields": []
 
 
3198
  },
3199
  {
3200
- "slug": "safexpress",
3201
- "name": "Safexpress",
3202
- "other_name": "Safexpress",
3203
- "required_fields": []
 
 
3204
  },
3205
  {
3206
- "slug": "sagawa",
3207
- "name": "Sagawa",
3208
- "other_name": "佐川急便",
3209
- "required_fields": []
3210
  },
3211
  {
3212
- "slug": "saia-freight",
3213
- "name": "Saia LTL Freight",
3214
- "other_name": "",
3215
- "required_fields": []
3216
  },
3217
  {
3218
- "slug": "sailpost",
3219
- "name": "SAILPOST",
3220
- "other_name": "",
3221
- "required_fields": []
3222
  },
3223
  {
3224
- "slug": "sap-express",
3225
- "name": "SAP EXPRESS",
3226
- "other_name": "",
3227
- "required_fields": []
3228
  },
3229
  {
3230
- "slug": "sapo",
3231
- "name": "South African Post Office",
3232
- "other_name": "South African Post Office",
3233
- "required_fields": []
3234
  },
3235
  {
3236
- "slug": "saudi-post",
3237
- "name": "Saudi Post",
3238
- "other_name": "البريد السعودي",
3239
- "required_fields": []
3240
  },
3241
  {
3242
- "slug": "scudex-express",
3243
- "name": "Scudex Express",
3244
- "other_name": "",
3245
- "required_fields": []
3246
  },
3247
  {
3248
- "slug": "sefl",
3249
- "name": "Southeastern Freight Lines",
3250
- "other_name": "",
3251
- "required_fields": []
 
 
3252
  },
3253
  {
3254
- "slug": "seino",
3255
- "name": "Seino",
3256
- "other_name": "",
3257
- "required_fields": []
3258
  },
3259
  {
3260
- "slug": "seko-sftp",
3261
- "name": "SEKO Worldwide, LLC",
3262
- "other_name": "SEKO Logistics",
3263
- "required_fields": []
3264
  },
3265
  {
3266
- "slug": "sekologistics",
3267
- "name": "SEKO Logistics",
3268
- "other_name": "SEKO",
3269
- "required_fields": []
3270
  },
3271
  {
3272
- "slug": "sending",
3273
- "name": "Sending Transporte Urgente y Comunicacion, S.A.U",
3274
- "other_name": "",
3275
- "required_fields": []
3276
  },
3277
  {
3278
- "slug": "sendit",
3279
- "name": "Sendit",
3280
- "other_name": "",
3281
- "required_fields": []
3282
  },
3283
  {
3284
- "slug": "sendle",
3285
- "name": "Sendle",
3286
- "other_name": "",
3287
- "required_fields": []
3288
  },
3289
  {
3290
- "slug": "sf-express",
3291
- "name": "S.F. Express",
3292
- "other_name": "順豊快遞, SF",
3293
- "required_fields": []
3294
  },
3295
  {
3296
- "slug": "sf-express-webhook",
3297
- "name": "SF Express (Webhook)",
3298
- "other_name": "顺丰速运 (丰桥路由状态推送)",
3299
- "required_fields": []
3300
  },
3301
  {
3302
- "slug": "sfb2c",
3303
- "name": "S.F International",
3304
- "other_name": "順豐國際",
3305
- "required_fields": []
3306
  },
3307
  {
3308
- "slug": "sfcservice",
3309
- "name": "SFC Service",
3310
- "other_name": "u6df1u5733u4e09u6001u56fdu9645u901fu9012",
3311
- "required_fields": []
3312
  },
3313
  {
3314
- "slug": "sfplus-webhook",
3315
- "name": "SF Plus",
3316
- "other_name": "Kin Shun Information Technology Limited",
3317
- "required_fields": []
3318
  },
3319
  {
3320
- "slug": "sgt-it",
3321
- "name": "SGT Corriere Espresso",
3322
- "other_name": "SoGeTras Corriere Espresso",
3323
- "required_fields": []
3324
  },
3325
  {
3326
- "slug": "shippify",
3327
- "name": "Shippify, Inc",
3328
- "other_name": "",
3329
- "required_fields": []
3330
  },
3331
  {
3332
- "slug": "shippit",
3333
- "name": "Shippit",
3334
- "other_name": "",
3335
- "required_fields": []
 
 
3336
  },
3337
  {
3338
- "slug": "shiptor",
3339
- "name": "Shiptor",
3340
- "other_name": "",
3341
- "required_fields": []
3342
  },
3343
  {
3344
- "slug": "shopfans",
3345
- "name": "ShopfansRU LLC",
3346
- "other_name": "",
3347
- "required_fields": []
3348
  },
3349
  {
3350
- "slug": "shree-maruti",
3351
- "name": "Shree Maruti Courier Services Pvt Ltd",
3352
- "other_name": "",
3353
- "required_fields": []
3354
  },
3355
  {
3356
- "slug": "shreetirupati",
3357
- "name": "SHREE TIRUPATI COURIER SERVICES PVT. LTD.",
3358
- "other_name": "",
3359
- "required_fields": []
3360
  },
3361
  {
3362
- "slug": "sic-teliway",
3363
- "name": "Teliway SIC Express",
3364
- "other_name": "Prevote",
3365
- "required_fields": [
3366
- "tracking_account_number",
3367
- "tracking_key"
3368
- ]
3369
  },
3370
  {
3371
- "slug": "simplypost",
3372
- "name": "J & T Express Singapore",
3373
- "other_name": "",
3374
- "required_fields": []
3375
  },
3376
  {
3377
- "slug": "singapore-post",
3378
- "name": "Singapore Post",
3379
- "other_name": "SingPost",
3380
- "required_fields": []
3381
  },
3382
  {
3383
- "slug": "singapore-speedpost",
3384
- "name": "Singapore Speedpost",
3385
- "other_name": "Singapore EMS",
3386
- "required_fields": []
3387
  },
3388
  {
3389
- "slug": "siodemka",
3390
- "name": "Siodemka",
3391
- "other_name": "Siodemka Kurier",
3392
- "required_fields": []
3393
  },
3394
  {
3395
- "slug": "sk-posta",
3396
- "name": "Slovenská pošta, a.s.",
3397
- "other_name": "",
3398
- "required_fields": []
3399
  },
3400
  {
3401
- "slug": "sky-postal",
3402
- "name": "SkyPostal",
3403
- "other_name": "",
3404
- "required_fields": []
3405
  },
3406
  {
3407
- "slug": "skybox",
3408
- "name": "SKYBOX",
3409
- "other_name": "",
3410
- "required_fields": []
3411
  },
3412
  {
3413
- "slug": "skynet",
3414
- "name": "SkyNet Malaysia",
3415
- "other_name": "SkyNet MY",
3416
- "required_fields": []
 
 
3417
  },
3418
  {
3419
- "slug": "skynet-za",
3420
- "name": "Skynet World Wide Express South Africa",
3421
- "other_name": "",
3422
- "required_fields": []
 
 
 
3423
  },
3424
  {
3425
- "slug": "skynetworldwide",
3426
- "name": "SkyNet Worldwide Express",
3427
- "other_name": "Skynetwwe",
3428
- "required_fields": []
3429
  },
3430
  {
3431
- "slug": "skynetworldwide-uae",
3432
- "name": "SkyNet Worldwide Express UAE",
3433
- "other_name": "",
3434
- "required_fields": []
3435
  },
3436
  {
3437
- "slug": "skynetworldwide-uk",
3438
- "name": "Skynet Worldwide Express UK",
3439
- "other_name": "Skynet UK",
3440
- "required_fields": []
3441
  },
3442
  {
3443
- "slug": "skypostal",
3444
- "name": "Asendia HK – Premium Service (LATAM)",
3445
- "other_name": "SkyPostal (Postrac)",
3446
- "required_fields": []
3447
  },
3448
  {
3449
- "slug": "smg-express",
3450
- "name": "SMG Direct",
3451
- "other_name": "",
3452
- "required_fields": []
3453
  },
3454
  {
3455
- "slug": "smooth",
3456
- "name": "Smooth Couriers",
3457
- "other_name": "",
3458
- "required_fields": []
3459
  },
3460
  {
3461
- "slug": "smsa-express",
3462
- "name": "SMSA Express",
3463
- "other_name": "",
3464
- "required_fields": []
3465
  },
3466
  {
3467
- "slug": "spain-correos-es",
3468
- "name": "Correos de España",
3469
- "other_name": "Spain Post, ChronoExpress",
3470
- "required_fields": []
3471
  },
3472
  {
3473
- "slug": "spanish-seur",
3474
- "name": "Spanish Seur",
3475
- "other_name": "SEUR",
3476
- "required_fields": []
3477
  },
3478
  {
3479
- "slug": "spanish-seur-api",
3480
- "name": "Spanish Seur API",
3481
- "other_name": "",
3482
- "required_fields": []
3483
  },
3484
  {
3485
- "slug": "specialisedfreight-za",
3486
- "name": "Specialised Freight",
3487
- "other_name": "SFS",
3488
- "required_fields": []
3489
  },
3490
  {
3491
- "slug": "speedcouriers-gr",
3492
- "name": "Speed Couriers",
3493
- "other_name": "Speed Couriers",
3494
- "required_fields": []
3495
  },
3496
  {
3497
- "slug": "speedee",
3498
- "name": "Spee-Dee Delivery",
3499
- "other_name": "",
3500
- "required_fields": []
3501
  },
3502
  {
3503
- "slug": "speedexcourier",
3504
- "name": "Speedex Courier",
3505
- "other_name": "Speedex Courier",
3506
- "required_fields": []
3507
  },
3508
  {
3509
- "slug": "speedy",
3510
- "name": "Speedy",
3511
- "other_name": "",
3512
- "required_fields": []
3513
  },
3514
  {
3515
- "slug": "spoton",
3516
- "name": "SPOTON Logistics Pvt Ltd",
3517
- "other_name": "",
3518
- "required_fields": []
3519
  },
3520
  {
3521
- "slug": "spring-gds",
3522
- "name": "Spring GDS",
3523
- "other_name": "",
3524
- "required_fields": []
3525
  },
3526
  {
3527
- "slug": "sprint-pack",
3528
- "name": "SPRINT PACK",
3529
- "other_name": "",
3530
- "required_fields": []
3531
  },
3532
  {
3533
- "slug": "srekorea",
3534
- "name": "SRE Korea",
3535
- "other_name": "SRE 배송서비스",
3536
- "required_fields": []
3537
  },
3538
  {
3539
- "slug": "star-track",
3540
- "name": "StarTrack",
3541
- "other_name": "Star Track",
3542
- "required_fields": []
 
 
3543
  },
3544
  {
3545
- "slug": "star-track-courier",
3546
- "name": "Star Track Courier",
3547
- "other_name": "",
3548
- "required_fields": [
3549
- "tracking_state"
3550
- ]
3551
  },
3552
  {
3553
- "slug": "star-track-express",
3554
- "name": "Star Track Express",
3555
- "other_name": "AaE Australian air Express",
3556
- "required_fields": []
3557
  },
3558
  {
3559
- "slug": "sto",
3560
- "name": "STO Express",
3561
- "other_name": "申通快递, Shentong Express",
3562
- "required_fields": []
3563
  },
3564
  {
3565
- "slug": "sutton",
3566
- "name": "Sutton Transport",
3567
- "other_name": "",
3568
- "required_fields": []
3569
  },
3570
  {
3571
- "slug": "sweden-posten",
3572
- "name": "PostNord Sweden",
3573
- "other_name": "Sweden Post, Posten, Sweden Posten",
3574
- "required_fields": []
3575
  },
3576
  {
3577
- "slug": "swiss-post",
3578
- "name": "Swiss Post",
3579
- "other_name": "La Poste Suisse, Die Schweizerische Post, Die Post",
3580
- "required_fields": []
3581
  },
3582
  {
3583
- "slug": "sypost",
3584
- "name": "Sunyou Post",
3585
- "other_name": "",
3586
- "required_fields": []
3587
  },
3588
  {
3589
- "slug": "szdpex",
3590
- "name": "DPEX China",
3591
- "other_name": "DPEX(深圳)国际物流, Toll China",
3592
- "required_fields": []
3593
  },
3594
  {
3595
- "slug": "taiwan-post",
3596
- "name": "Taiwan Post",
3597
- "other_name": "Chunghwa Post, 台灣中華郵政",
3598
- "required_fields": []
3599
  },
3600
  {
3601
- "slug": "taqbin-hk",
3602
- "name": "TAQBIN Hong Kong",
3603
- "other_name": "Yamat, 雅瑪多運輸- 宅急便",
3604
- "required_fields": []
3605
  },
3606
  {
3607
- "slug": "taqbin-jp",
3608
- "name": "Yamato Japan",
3609
- "other_name": "ヤマト運輸, TAQBIN",
3610
- "required_fields": []
3611
  },
3612
  {
3613
- "slug": "taqbin-my",
3614
- "name": "TAQBIN Malaysia",
3615
- "other_name": "TAQBIN Malaysia",
3616
- "required_fields": []
3617
  },
3618
  {
3619
- "slug": "taqbin-sg",
3620
- "name": "TAQBIN Singapore",
3621
- "other_name": "Yamato Singapore",
3622
- "required_fields": []
3623
  },
3624
  {
3625
- "slug": "taxydromiki",
3626
- "name": "Geniki Taxydromiki",
3627
- "other_name": "ΓΕΝΙΚΗ ΤΑΧΥΔΡΟΜΙΚΗ",
3628
- "required_fields": []
3629
  },
3630
  {
3631
- "slug": "tck-express",
3632
- "name": "TCK Express",
3633
- "other_name": "",
3634
- "required_fields": []
3635
  },
3636
  {
3637
- "slug": "tcs",
3638
- "name": "TCS",
3639
- "other_name": "",
3640
- "required_fields": []
3641
  },
3642
  {
3643
- "slug": "tfm",
3644
- "name": "TFM Xpress",
3645
- "other_name": "",
3646
- "required_fields": [
3647
- "tracking_postal_code"
3648
- ]
3649
  },
3650
  {
3651
- "slug": "tforce-finalmile",
3652
- "name": "TForce Final Mile",
3653
- "other_name": "",
3654
- "required_fields": []
3655
  },
3656
  {
3657
- "slug": "tgx",
3658
- "name": "Kerry Express Hong Kong",
3659
- "other_name": "Top Gun Express, 精英速運, TGX",
3660
- "required_fields": []
3661
  },
3662
  {
3663
- "slug": "thailand-post",
3664
- "name": "Thailand Thai Post",
3665
- "other_name": "ไปรษณีย์ไทย",
3666
- "required_fields": []
3667
  },
3668
  {
3669
- "slug": "thecourierguy",
3670
- "name": "The Courier Guy",
3671
- "other_name": "TheCourierGuy",
3672
- "required_fields": []
3673
  },
3674
  {
3675
- "slug": "tiki",
3676
- "name": "Tiki",
3677
- "other_name": "Citra Van Titipan Kilat",
3678
- "required_fields": []
3679
  },
3680
  {
3681
- "slug": "tipsa",
3682
- "name": "TIPSA",
3683
- "other_name": "",
3684
- "required_fields": []
3685
  },
3686
  {
3687
- "slug": "tnt",
3688
- "name": "TNT",
3689
- "other_name": "TNT Express",
3690
- "required_fields": []
3691
  },
3692
  {
3693
- "slug": "tnt-au",
3694
- "name": "TNT Australia",
3695
- "other_name": "TNT AU",
3696
- "required_fields": []
3697
  },
3698
  {
3699
- "slug": "tnt-click",
3700
- "name": "TNT-Click Italy",
3701
- "other_name": "TNT Italy",
3702
- "required_fields": []
3703
  },
3704
  {
3705
- "slug": "tnt-fr",
3706
- "name": "TNT France",
3707
- "other_name": "TNT Express FR",
3708
- "required_fields": []
3709
  },
3710
  {
3711
- "slug": "tnt-it",
3712
- "name": "TNT Italy",
3713
- "other_name": "TNT Express IT",
3714
- "required_fields": []
3715
  },
3716
  {
3717
- "slug": "tnt-reference",
3718
- "name": "TNT Reference",
3719
- "other_name": "TNT consignment reference",
3720
- "required_fields": []
3721
  },
3722
  {
3723
- "slug": "tnt-uk",
3724
- "name": "TNT UK",
3725
- "other_name": "TNT United Kingdom",
3726
- "required_fields": []
3727
  },
3728
  {
3729
- "slug": "tnt-uk-reference",
3730
- "name": "TNT UK Reference",
3731
- "other_name": "TNT UK consignment reference",
3732
- "required_fields": []
3733
  },
3734
  {
3735
- "slug": "tntpost-it",
3736
- "name": "Nexive (TNT Post Italy)",
3737
- "other_name": "Postnl TNT",
3738
- "required_fields": []
3739
  },
3740
  {
3741
- "slug": "toll-ipec",
3742
- "name": "Toll IPEC",
3743
- "other_name": "Toll Express",
3744
- "required_fields": []
3745
  },
3746
  {
3747
- "slug": "toll-nz",
3748
- "name": "Toll New Zealand",
3749
- "other_name": "",
3750
- "required_fields": []
3751
  },
3752
  {
3753
- "slug": "toll-priority",
3754
- "name": "Toll Priority",
3755
- "other_name": "Toll Group, Toll Priority",
3756
- "required_fields": []
3757
  },
3758
  {
3759
- "slug": "tolos",
3760
- "name": "Tolos",
3761
- "other_name": "",
3762
- "required_fields": []
3763
  },
3764
  {
3765
- "slug": "tophatterexpress",
3766
- "name": "Tophatter Express",
3767
- "other_name": "",
3768
- "required_fields": []
3769
  },
3770
  {
3771
- "slug": "total-express",
3772
- "name": "Total Express",
3773
- "other_name": "",
3774
- "required_fields": [
3775
- "tracking_account_number",
3776
- "tracking_key"
3777
- ]
3778
  },
3779
  {
3780
- "slug": "tourline",
3781
- "name": "tourline",
3782
- "other_name": "ctt",
3783
- "required_fields": []
3784
  },
3785
  {
3786
- "slug": "tourline-reference",
3787
- "name": "Tourline Express",
3788
- "other_name": "",
3789
- "required_fields": []
3790
  },
3791
  {
3792
- "slug": "trakpak",
3793
- "name": "TrakPak",
3794
- "other_name": "bpost international P2P Mailing Trak Pak",
3795
- "required_fields": []
3796
  },
3797
  {
3798
- "slug": "trans-kargo",
3799
- "name": "Trans Kargo Internasional",
3800
- "other_name": "",
3801
- "required_fields": []
3802
  },
3803
  {
3804
- "slug": "transmission-nl",
3805
- "name": "TransMission",
3806
- "other_name": "mijnzending",
3807
- "required_fields": [
3808
- "tracking_postal_code"
3809
- ]
3810
  },
3811
  {
3812
- "slug": "trunkrs-webhook",
3813
- "name": "Trunkrs",
3814
- "other_name": "",
3815
- "required_fields": []
3816
  },
3817
  {
3818
- "slug": "tuffnells",
3819
- "name": "Tuffnells Parcels Express",
3820
- "other_name": "",
3821
- "required_fields": [
3822
- "tracking_account_number",
3823
- "tracking_postal_code"
3824
- ]
3825
  },
3826
  {
3827
- "slug": "tuffnells-reference",
3828
- "name": "Tuffnells Parcels Express- Reference",
3829
- "other_name": "",
3830
- "required_fields": [
3831
- "tracking_postal_code"
3832
- ]
3833
  },
3834
  {
3835
- "slug": "ubi-logistics",
3836
- "name": "UBI Smart Parcel",
3837
- "other_name": "",
3838
- "required_fields": []
3839
  },
3840
  {
3841
- "slug": "uds",
3842
- "name": "United Delivery Service, Ltd",
3843
- "other_name": "",
3844
- "required_fields": []
3845
  },
3846
  {
3847
- "slug": "uk-mail",
3848
- "name": "UK Mail",
3849
- "other_name": "Business Post Group",
3850
- "required_fields": []
3851
  },
3852
  {
3853
- "slug": "ukrposhta",
3854
- "name": "UkrPoshta",
3855
- "other_name": "Укрпошта",
3856
- "required_fields": []
3857
  },
3858
  {
3859
- "slug": "up-express",
3860
- "name": "UP-express",
3861
- "other_name": "",
3862
- "required_fields": []
3863
  },
3864
  {
3865
- "slug": "ups",
3866
- "name": "UPS",
3867
- "other_name": "United Parcel Service",
3868
- "required_fields": []
3869
  },
3870
  {
3871
- "slug": "ups-freight",
3872
- "name": "UPS Freight",
3873
- "other_name": "UPS LTL and Truckload",
3874
- "required_fields": []
3875
  },
3876
  {
3877
- "slug": "ups-mi",
3878
- "name": "UPS Mail Innovations",
3879
- "other_name": "UPS MI",
3880
- "required_fields": []
3881
  },
3882
  {
3883
- "slug": "urgent-cargus",
3884
- "name": "Urgent Cargus",
3885
- "other_name": "",
3886
- "required_fields": []
3887
  },
3888
  {
3889
- "slug": "usf-reddaway",
3890
- "name": "USF Reddaway",
3891
- "other_name": "",
3892
- "required_fields": []
3893
  },
3894
  {
3895
- "slug": "usps",
3896
- "name": "USPS",
3897
- "other_name": "United States Postal Service",
3898
- "required_fields": []
3899
  },
3900
  {
3901
- "slug": "usps-webhook",
3902
- "name": "USPS Informed Visibility - Webhook",
3903
- "other_name": "USPS IV",
3904
- "required_fields": []
3905
  },
3906
  {
3907
- "slug": "viettelpost",
3908
- "name": "ViettelPost",
3909
- "other_name": "Bưu chính Viettel",
3910
- "required_fields": []
3911
  },
3912
  {
3913
- "slug": "virtransport",
3914
- "name": "VIR Transport",
3915
- "other_name": "",
3916
- "required_fields": []
3917
  },
3918
  {
3919
- "slug": "viwo",
3920
- "name": "VIWO IoT",
3921
- "other_name": "",
3922
- "required_fields": []
3923
  },
3924
  {
3925
- "slug": "vnpost",
3926
- "name": "Vietnam Post",
3927
- "other_name": "VNPost",
3928
- "required_fields": []
3929
  },
3930
  {
3931
- "slug": "vnpost-ems",
3932
- "name": "Vietnam Post EMS",
3933
- "other_name": "VNPost EMS",
3934
- "required_fields": []
3935
  },
3936
  {
3937
- "slug": "wahana",
3938
- "name": "Wahana",
3939
- "other_name": "Wahana Indonesia",
3940
- "required_fields": []
3941
  },
3942
  {
3943
- "slug": "wanbexpress",
3944
- "name": "WanbExpress",
3945
- "other_name": "",
3946
- "required_fields": []
3947
  },
3948
  {
3949
- "slug": "watkins-shepard",
3950
- "name": "Watkins Shepard",
3951
- "other_name": "",
3952
- "required_fields": []
3953
  },
3954
  {
3955
- "slug": "weaship",
3956
- "name": "Weaship",
3957
- "other_name": "",
3958
- "required_fields": []
3959
  },
3960
  {
3961
- "slug": "wedo",
3962
- "name": "WeDo Logistics",
3963
- "other_name": "運德物流",
3964
- "required_fields": []
3965
  },
3966
  {
3967
- "slug": "wepost",
3968
- "name": "WePost Logistics",
3969
- "other_name": "",
3970
- "required_fields": []
3971
  },
3972
  {
3973
- "slug": "westbank-courier",
3974
- "name": "West Bank Courier",
3975
- "other_name": "",
3976
- "required_fields": []
3977
  },
3978
  {
3979
- "slug": "whistl",
3980
- "name": "Whistl",
3981
- "other_name": "",
3982
- "required_fields": []
3983
  },
3984
  {
3985
- "slug": "wise-express",
3986
- "name": "Wise Express",
3987
- "other_name": "u4e07u8272u901fu9012",
3988
- "required_fields": []
3989
  },
3990
  {
3991
- "slug": "wiseloads",
3992
- "name": "Wiseloads",
3993
- "other_name": "",
3994
- "required_fields": []
3995
  },
3996
  {
3997
- "slug": "wishpost",
3998
- "name": "WishPost",
3999
- "other_name": "Wish",
4000
- "required_fields": []
4001
  },
4002
  {
4003
- "slug": "wizmo",
4004
- "name": "Wizmo",
4005
- "other_name": "",
4006
- "required_fields": []
 
 
4007
  },
4008
  {
4009
- "slug": "wmg",
4010
- "name": "WMG Delivery",
4011
- "other_name": "World Marketing Group Pte Ltd",
4012
- "required_fields": []
4013
  },
4014
  {
4015
- "slug": "wndirect",
4016
- "name": "wnDirect",
4017
- "other_name": "",
4018
- "required_fields": []
4019
  },
4020
  {
4021
- "slug": "xdp-uk",
4022
- "name": "XDP Express",
4023
- "other_name": "XDP UK",
4024
- "required_fields": [
4025
- "tracking_postal_code"
4026
- ]
4027
  },
4028
  {
4029
- "slug": "xdp-uk-reference",
4030
- "name": "XDP Express Reference",
4031
- "other_name": "XDP UK",
4032
- "required_fields": [
4033
- "tracking_postal_code"
4034
- ]
4035
  },
4036
  {
4037
- "slug": "xend",
4038
- "name": "Xend Express",
4039
- "other_name": "Xend Business Solutions",
4040
- "required_fields": []
4041
  },
4042
  {
4043
- "slug": "xl-express",
4044
- "name": "XL Express",
4045
- "other_name": "",
4046
- "required_fields": []
4047
  },
4048
  {
4049
- "slug": "xpedigo",
4050
- "name": "Xpedigo",
4051
- "other_name": "",
4052
- "required_fields": []
4053
  },
4054
  {
4055
- "slug": "xpert-delivery",
4056
- "name": "Xpert Delivery",
4057
- "other_name": "",
4058
- "required_fields": []
4059
  },
4060
  {
4061
- "slug": "xpo-logistics",
4062
- "name": "XPO logistics",
4063
- "other_name": "",
4064
- "required_fields": []
4065
  },
4066
  {
4067
- "slug": "xpost",
4068
- "name": "Xpost.ph",
4069
- "other_name": "",
4070
- "required_fields": []
4071
  },
4072
  {
4073
- "slug": "xpressbees",
4074
- "name": "XpressBees",
4075
- "other_name": "XpressBees logistics",
4076
- "required_fields": []
4077
  },
4078
  {
4079
- "slug": "xq-express",
4080
- "name": "XQ Express",
4081
- "other_name": "u661fu4e7eu7269u6d41",
4082
- "required_fields": []
4083
  },
4084
  {
4085
- "slug": "yakit",
4086
- "name": "Yakit",
4087
- "other_name": "",
4088
- "required_fields": []
4089
  },
4090
  {
4091
- "slug": "yanwen",
4092
- "name": "Yanwen",
4093
- "other_name": "燕文物流",
4094
- "required_fields": []
4095
  },
4096
  {
4097
- "slug": "ydh-express",
4098
- "name": "YDH express",
4099
- "other_name": null,
4100
- "required_fields": []
4101
  },
4102
  {
4103
- "slug": "yodel",
4104
- "name": "Yodel Domestic",
4105
- "other_name": "Home Delivery Network Limited (HDNL)",
4106
- "required_fields": []
4107
  },
4108
  {
4109
- "slug": "yodel-international",
4110
- "name": "Yodel International",
4111
- "other_name": "Home Delivery Network, HDNL",
4112
- "required_fields": []
4113
  },
4114
  {
4115
- "slug": "yrc",
4116
- "name": "YRC",
4117
- "other_name": "YRC Freight",
4118
- "required_fields": []
4119
  },
4120
  {
4121
- "slug": "yto",
4122
- "name": "YTO Express",
4123
- "other_name": "u5706u901au901fu9012",
4124
- "required_fields": []
4125
  },
4126
  {
4127
- "slug": "yundaex",
4128
- "name": "Yunda Express",
4129
- "other_name": "韵达快递",
4130
- "required_fields": []
4131
  },
4132
  {
4133
- "slug": "yunexpress",
4134
- "name": "Yun Express",
4135
- "other_name": "云途物流",
4136
- "required_fields": []
4137
  },
4138
  {
4139
- "slug": "yurtici-kargo",
4140
- "name": "Yurtici Kargo",
4141
- "other_name": "",
4142
- "required_fields": []
 
 
4143
  },
4144
  {
4145
- "slug": "zajil-express",
4146
- "name": "Zajil Express Company",
4147
- "other_name": "",
4148
- "required_fields": []
4149
  },
4150
  {
4151
- "slug": "zeleris",
4152
- "name": "Zeleris",
4153
- "other_name": "",
4154
- "required_fields": []
4155
  },
4156
  {
4157
- "slug": "zepto-express",
4158
- "name": "ZeptoExpress",
4159
- "other_name": "",
4160
- "required_fields": []
4161
  },
4162
  {
4163
- "slug": "zinc",
4164
- "name": "Zinc",
4165
- "other_name": "",
4166
- "required_fields": []
4167
  },
4168
  {
4169
- "slug": "zjs-express",
4170
- "name": "ZJS International",
4171
- "other_name": "宅急送快運",
4172
- "required_fields": []
 
 
4173
  },
4174
  {
4175
- "slug": "zto-express",
4176
- "name": "ZTO Express",
4177
- "other_name": "",
4178
- "required_fields": []
4179
  },
4180
  {
4181
- "slug": "zyllem",
4182
- "name": "Zyllem",
4183
- "other_name": "RocketUncle",
4184
- "required_fields": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4185
  }
4186
  ];
4187
  return data;
1
  function get_couriers() {
2
  var data = [
3
  {
4
+ "slug": "007ex",
5
+ "name": "007EX",
6
+ "other_name": "",
7
+ "required_fields": []
8
  },
9
  {
10
+ "slug": "17postservice",
11
+ "name": "17 Post Service",
12
+ "other_name": "17PostService",
13
+ "required_fields": []
14
  },
15
  {
16
+ "slug": "2ebox",
17
+ "name": "2ebox",
18
+ "other_name": "",
19
+ "required_fields": []
20
  },
21
  {
22
+ "slug": "2go",
23
+ "name": "2GO",
24
+ "other_name": "Negros Navigation",
25
+ "required_fields": []
26
  },
27
  {
28
+ "slug": "360lion",
29
+ "name": "360 Lion Express",
30
+ "other_name": "",
31
+ "required_fields": []
32
  },
33
  {
34
+ "slug": "4-72",
35
+ "name": "4-72 Entregando",
36
+ "other_name": "Colombia Postal Service",
37
+ "required_fields": []
38
  },
39
  {
40
+ "slug": "4px",
41
+ "name": "4PX",
42
+ "other_name": "递四方",
43
+ "required_fields": []
44
  },
45
  {
46
+ "slug": "800bestex",
47
+ "name": "Best Express",
48
+ "other_name": "百世汇通",
49
+ "required_fields": []
50
  },
51
  {
52
+ "slug": "99minutos",
53
+ "name": "99minutos",
54
+ "other_name": null,
55
+ "required_fields": []
56
  },
57
  {
58
+ "slug": "aaa-cooper",
59
+ "name": "AAA Cooper",
60
+ "other_name": "",
61
+ "required_fields": []
 
 
62
  },
63
  {
64
+ "slug": "abcustom",
65
+ "name": "AB Custom Group",
66
+ "other_name": "",
67
+ "required_fields": [
68
+ "tracking_postal_code"
69
+ ]
70
  },
71
  {
72
+ "slug": "abf",
73
+ "name": "ABF Freight",
74
+ "other_name": "Arkansas Best Corporation",
75
+ "required_fields": []
76
  },
77
  {
78
+ "slug": "abxexpress-my",
79
+ "name": "ABX Express",
80
+ "other_name": "ABX Express (M) Sdn Bhd",
81
+ "required_fields": []
82
  },
83
  {
84
+ "slug": "acommerce",
85
+ "name": "aCommerce",
86
+ "other_name": "",
87
+ "required_fields": []
88
  },
89
  {
90
+ "slug": "acscourier",
91
+ "name": "ACS Courier",
92
+ "other_name": "Αναζήτηση Καταστημάτων",
93
+ "required_fields": []
94
  },
95
  {
96
+ "slug": "acsworldwide",
97
+ "name": "ACS Worldwide Express",
98
+ "other_name": "",
99
+ "required_fields": []
100
  },
101
  {
102
+ "slug": "aderonline",
103
+ "name": "Ader",
104
+ "other_name": "",
105
+ "required_fields": []
106
  },
107
  {
108
+ "slug": "adicional",
109
+ "name": "Adicional Logistics",
110
+ "other_name": "",
111
+ "required_fields": []
112
  },
113
  {
114
+ "slug": "adsone",
115
+ "name": "ADSOne",
116
+ "other_name": "ADSOne Group",
117
+ "required_fields": []
118
  },
119
  {
120
+ "slug": "aduiepyle",
121
+ "name": "A Duie Pyle",
122
+ "other_name": "",
123
+ "required_fields": []
124
  },
125
  {
126
+ "slug": "aeroflash",
127
+ "name": "Mexico AeroFlash",
128
+ "other_name": "AeroFlash",
129
+ "required_fields": []
130
  },
131
  {
132
+ "slug": "aeronet",
133
+ "name": "Aeronet",
134
+ "other_name": "",
135
+ "required_fields": []
136
  },
137
  {
138
+ "slug": "aersure",
139
+ "name": "Aersure",
140
+ "other_name": "",
141
+ "required_fields": []
142
  },
143
  {
144
+ "slug": "agility",
145
+ "name": "Agility",
146
+ "other_name": null,
147
+ "required_fields": []
148
  },
149
  {
150
+ "slug": "air-canada",
151
+ "name": "Air Canada",
152
+ "other_name": null,
153
+ "required_fields": []
154
  },
155
  {
156
+ "slug": "air21",
157
+ "name": "AIR21",
158
+ "other_name": "AIR 21 PH",
159
+ "required_fields": []
 
 
160
  },
161
  {
162
+ "slug": "airmee-webhook",
163
+ "name": "Airmee",
164
+ "other_name": "",
165
+ "required_fields": []
166
  },
167
  {
168
+ "slug": "airpak-express",
169
+ "name": "Airpak Express",
170
+ "other_name": "",
171
+ "required_fields": []
172
  },
173
  {
174
+ "slug": "airspeed",
175
+ "name": "Airspeed International Corporation",
176
+ "other_name": "Airspeed Philippines",
177
+ "required_fields": []
178
  },
179
  {
180
+ "slug": "alfatrex",
181
+ "name": "AlfaTrex",
182
+ "other_name": "",
183
+ "required_fields": []
184
  },
185
  {
186
+ "slug": "allied-express-ftp",
187
+ "name": "Allied Express (FTP)",
188
+ "other_name": "",
189
+ "required_fields": []
 
 
190
  },
191
  {
192
+ "slug": "alliedexpress",
193
+ "name": "Allied Express",
194
+ "other_name": "",
195
+ "required_fields": [
196
+ "tracking_postal_code"
197
+ ]
198
  },
199
  {
200
+ "slug": "alljoy",
201
+ "name": "ALLJOY SUPPLY CHAIN CO., LTD",
202
+ "other_name": "",
203
+ "required_fields": []
204
  },
205
  {
206
+ "slug": "alphafast",
207
+ "name": "alphaFAST",
208
+ "other_name": "Alpha",
209
+ "required_fields": []
210
  },
211
  {
212
+ "slug": "always-express",
213
+ "name": "Always Express",
214
+ "other_name": "",
215
+ "required_fields": []
216
  },
217
  {
218
+ "slug": "amazon",
219
+ "name": "Amazon Shipping + Amazon MCF",
220
+ "other_name": "",
221
+ "required_fields": []
222
  },
223
  {
224
+ "slug": "amazon-fba-swiship",
225
+ "name": "Amazon FBA Swiship",
226
+ "other_name": null,
227
+ "required_fields": []
228
  },
229
  {
230
+ "slug": "amazon-fba-us",
231
+ "name": "Amazon",
232
+ "other_name": "",
233
+ "required_fields": [
234
+ "tracking_key"
235
+ ]
236
  },
237
  {
238
+ "slug": "amazon-uk-api",
239
+ "name": "Amazon Shipping",
240
+ "other_name": null,
241
+ "required_fields": []
242
  },
243
  {
244
+ "slug": "an-post",
245
+ "name": "An Post",
246
+ "other_name": "Ireland Post",
247
+ "required_fields": []
248
  },
249
  {
250
+ "slug": "andreani",
251
+ "name": "Grupo logistico Andreani",
252
+ "other_name": null,
253
+ "required_fields": []
254
  },
255
  {
256
+ "slug": "anjun",
257
+ "name": "Anjun",
258
+ "other_name": null,
259
+ "required_fields": []
260
  },
261
  {
262
+ "slug": "anserx",
263
+ "name": "ANSERX",
264
+ "other_name": null,
265
+ "required_fields": []
 
 
266
  },
267
  {
268
+ "slug": "anserx-logistics",
269
+ "name": "ANSERX Logistics",
270
+ "other_name": null,
271
+ "required_fields": []
272
  },
273
  {
274
+ "slug": "antron",
275
+ "name": "Antron Express",
276
+ "other_name": "",
277
+ "required_fields": []
278
  },
279
  {
280
+ "slug": "ao-courier",
281
+ "name": "AO Logistics",
282
+ "other_name": "",
283
+ "required_fields": []
284
  },
285
  {
286
+ "slug": "apc",
287
+ "name": "APC Postal Logistics",
288
+ "other_name": "APC-PLI",
289
+ "required_fields": []
290
  },
291
  {
292
+ "slug": "apc-overnight",
293
+ "name": "APC Overnight",
294
+ "other_name": "Net Despatch",
295
+ "required_fields": []
 
 
296
  },
297
  {
298
+ "slug": "apc-overnight-connum",
299
+ "name": "APC Overnight Consignment Number",
300
+ "other_name": "",
301
+ "required_fields": [
302
+ "tracking_postal_code"
303
+ ]
304
  },
305
  {
306
+ "slug": "apg",
307
+ "name": "APG eCommerce Solutions Ltd.",
308
+ "other_name": "",
309
+ "required_fields": []
310
  },
311
  {
312
+ "slug": "aprisaexpress",
313
+ "name": "Aprisa Express",
314
+ "other_name": "",
315
+ "required_fields": []
316
  },
317
  {
318
+ "slug": "aquiline",
319
+ "name": "Aquiline",
320
+ "other_name": "",
321
+ "required_fields": []
 
 
322
  },
323
  {
324
+ "slug": "aramex",
325
+ "name": "Aramex",
326
+ "other_name": "ارامكس",
327
+ "required_fields": []
328
  },
329
  {
330
+ "slug": "arco-spedizioni",
331
+ "name": "Arco Spedizioni SP",
332
+ "other_name": null,
333
+ "required_fields": []
334
  },
335
  {
336
+ "slug": "ark-logistics",
337
+ "name": "ARK Logistics",
338
+ "other_name": null,
339
+ "required_fields": [
340
+ "tracking_postal_code"
341
+ ]
342
  },
343
  {
344
+ "slug": "arrowxl",
345
+ "name": "Arrow XL",
346
+ "other_name": "Yodel XL",
347
+ "required_fields": [
348
+ "tracking_postal_code"
349
+ ]
 
350
  },
351
  {
352
+ "slug": "asendia-de",
353
+ "name": "Asendia Germany",
354
+ "other_name": "Asendia De",
355
+ "required_fields": []
356
  },
357
  {
358
+ "slug": "asendia-hk",
359
+ "name": "Asendia HK",
360
+ "other_name": "",
361
+ "required_fields": []
362
  },
363
  {
364
+ "slug": "asendia-uk",
365
+ "name": "Asendia UK",
366
+ "other_name": "Asendia United Kingdom",
367
+ "required_fields": []
 
 
368
  },
369
  {
370
+ "slug": "asendia-usa",
371
+ "name": "Asendia USA",
372
+ "other_name": "Brokers Worldwide",
373
+ "required_fields": []
374
  },
375
  {
376
+ "slug": "asigna",
377
+ "name": "ASIGNA",
378
+ "other_name": null,
379
+ "required_fields": []
380
  },
381
  {
382
+ "slug": "asm",
383
+ "name": "ASM",
384
+ "other_name": "Asm-Red",
385
+ "required_fields": [
386
+ "tracking_postal_code"
387
+ ]
388
  },
389
  {
390
+ "slug": "aupost-china",
391
+ "name": "AuPost China",
392
+ "other_name": "澳邮宝",
393
+ "required_fields": []
394
  },
395
  {
396
+ "slug": "australia-post",
397
+ "name": "Australia Post",
398
+ "other_name": "AusPost",
399
+ "required_fields": []
400
  },
401
  {
402
+ "slug": "australia-post-api",
403
+ "name": "Australia Post",
404
+ "other_name": "",
405
+ "required_fields": []
406
  },
407
  {
408
+ "slug": "australia-post-sftp",
409
+ "name": "Australia Post Sftp",
410
+ "other_name": "AusPostSftp",
411
+ "required_fields": [
412
+ "tracking_account_number"
413
+ ]
414
  },
415
  {
416
+ "slug": "austrian-post",
417
+ "name": "Austrian Post (Express)",
418
+ "other_name": "Österreichische Post AG",
419
+ "required_fields": []
 
 
420
  },
421
  {
422
+ "slug": "austrian-post-registered",
423
+ "name": "Austrian Post (Registered)",
424
+ "other_name": "Österreichische Post AG",
425
+ "required_fields": []
426
  },
427
  {
428
+ "slug": "averitt",
429
+ "name": "Averitt Express",
430
+ "other_name": "",
431
+ "required_fields": []
432
  },
433
  {
434
+ "slug": "b2ceurope",
435
+ "name": "B2C Europe",
436
+ "other_name": "trackyourparcel.eu",
437
+ "required_fields": [
438
+ "tracking_postal_code",
439
+ "tracking_destination_country"
440
+ ]
441
  },
442
  {
443
+ "slug": "belpost",
444
+ "name": "Belpost",
445
+ "other_name": "Belposhta, Белпочта",
446
+ "required_fields": []
447
  },
448
  {
449
+ "slug": "bert-fr",
450
+ "name": "Bert Transport",
451
+ "other_name": "",
452
+ "required_fields": []
453
  },
454
  {
455
+ "slug": "bestwayparcel",
456
+ "name": "Best Way Parcel",
457
+ "other_name": "",
458
+ "required_fields": [
459
+ "tracking_key"
460
+ ]
461
  },
462
  {
463
+ "slug": "bgpost",
464
+ "name": "Bulgarian Posts",
465
+ "other_name": "Български пощи",
466
+ "required_fields": []
 
 
467
  },
468
  {
469
+ "slug": "bh-posta",
470
+ "name": "JP BH Pošta",
471
+ "other_name": "Bosnia and Herzegovina Post",
472
+ "required_fields": []
 
 
473
  },
474
  {
475
+ "slug": "bh-worldwide",
476
+ "name": "B&H Worldwide",
477
+ "other_name": "",
478
+ "required_fields": []
479
  },
480
  {
481
+ "slug": "birdsystem",
482
+ "name": "BirdSystem",
483
+ "other_name": "",
484
+ "required_fields": []
485
  },
486
  {
487
+ "slug": "bjshomedelivery-ftp",
488
+ "name": "BJS Distribution, Storage & Couriers - FTP",
489
+ "other_name": "",
490
+ "required_fields": []
491
  },
492
  {
493
+ "slug": "bluecare",
494
+ "name": "Bluecare Express Ltd",
495
+ "other_name": "",
496
+ "required_fields": []
497
  },
498
  {
499
+ "slug": "bluedart",
500
+ "name": "Bluedart",
501
+ "other_name": "Blue Dart Express",
502
+ "required_fields": []
 
 
503
  },
504
  {
505
+ "slug": "bluestar",
506
+ "name": "Blue Star",
507
+ "other_name": "",
508
+ "required_fields": [
509
+ "tracking_postal_code"
510
+ ]
511
  },
512
  {
513
+ "slug": "bneed",
514
+ "name": "Bneed",
515
+ "other_name": "",
516
+ "required_fields": []
517
  },
518
  {
519
+ "slug": "bond",
520
+ "name": "Bond",
521
+ "other_name": "",
522
+ "required_fields": []
523
  },
524
  {
525
+ "slug": "bondscouriers",
526
+ "name": "Bonds Couriers",
527
+ "other_name": "",
528
+ "required_fields": []
529
  },
530
  {
531
+ "slug": "borderexpress",
532
+ "name": "Border Express",
533
+ "other_name": "",
534
+ "required_fields": []
535
  },
536
  {
537
+ "slug": "box-berry",
538
+ "name": "Boxberry",
539
+ "other_name": "",
540
+ "required_fields": []
541
  },
542
  {
543
+ "slug": "boxc",
544
+ "name": "BoxC",
545
+ "other_name": "BOXC快遞",
546
+ "required_fields": []
 
 
547
  },
548
  {
549
+ "slug": "bpost",
550
+ "name": "Bpost",
551
+ "other_name": "Belgian Post, Belgium Post",
552
+ "required_fields": [
553
+ "tracking_postal_code"
554
+ ]
555
  },
556
  {
557
+ "slug": "bpost-api",
558
+ "name": "Bpost API",
559
+ "other_name": null,
560
+ "required_fields": []
561
  },
562
  {
563
+ "slug": "bpost-international",
564
+ "name": "Bpost international",
565
+ "other_name": "Landmark Global",
566
+ "required_fields": []
567
  },
568
  {
569
+ "slug": "brazil-correios",
570
+ "name": "Brazil Correios",
571
+ "other_name": "Brazilian Post",
572
+ "required_fields": []
 
 
573
  },
574
  {
575
+ "slug": "bring",
576
+ "name": "Bring",
577
+ "other_name": "",
578
+ "required_fields": []
579
  },
580
  {
581
+ "slug": "brouwer-transport",
582
+ "name": "Brouwer Transport en Logistiek B.V.",
583
+ "other_name": null,
584
+ "required_fields": []
585
  },
586
  {
587
+ "slug": "brt-it",
588
+ "name": "BRT Bartolini",
589
+ "other_name": "BRT Corriere Espresso, DPD Italy",
590
+ "required_fields": []
591
  },
592
  {
593
+ "slug": "brt-it-parcelid",
594
+ "name": "BRT Bartolini(Parcel ID)",
595
+ "other_name": "BRT Corriere Espresso, DPD Italy",
596
+ "required_fields": []
597
  },
598
  {
599
+ "slug": "brt-it-sender-ref",
600
+ "name": "BRT Bartolini(Sender Reference)",
601
+ "other_name": "",
602
+ "required_fields": [
603
+ "tracking_account_number"
604
+ ]
605
  },
606
  {
607
+ "slug": "budbee-webhook",
608
+ "name": "Budbee",
609
+ "other_name": "",
610
+ "required_fields": []
611
  },
612
  {
613
+ "slug": "buylogic",
614
+ "name": "Buylogic",
615
+ "other_name": "捷买送",
616
+ "required_fields": []
617
  },
618
  {
619
+ "slug": "cae-delivers",
620
+ "name": "CAE Delivers",
621
+ "other_name": "",
622
+ "required_fields": []
623
  },
624
  {
625
+ "slug": "cainiao",
626
+ "name": "AliExpress Standard Shipping",
627
+ "other_name": "CAINIAO",
628
+ "required_fields": []
629
  },
630
  {
631
+ "slug": "cambodia-post",
632
+ "name": "Cambodia Post",
633
+ "other_name": "Cambodia Post",
634
+ "required_fields": []
635
  },
636
  {
637
+ "slug": "canada-post",
638
+ "name": "Canada Post",
639
+ "other_name": "Postes Canada",
640
+ "required_fields": []
 
 
641
  },
642
  {
643
+ "slug": "canpar",
644
+ "name": "Canpar Courier",
645
+ "other_name": "TransForce",
646
+ "required_fields": []
647
  },
648
  {
649
+ "slug": "capital",
650
+ "name": "Capital Transport",
651
+ "other_name": "",
652
+ "required_fields": [
653
+ "tracking_account_number"
654
+ ]
655
  },
656
  {
657
+ "slug": "caribou",
658
+ "name": "Caribou",
659
+ "other_name": null,
660
+ "required_fields": []
661
  },
662
  {
663
+ "slug": "carriers",
664
+ "name": "Carriers",
665
+ "other_name": "",
666
+ "required_fields": []
667
  },
668
  {
669
+ "slug": "carry-flap",
670
+ "name": "Carry-Flap Co.,Ltd.",
671
+ "other_name": "",
672
+ "required_fields": []
673
  },
674
  {
675
+ "slug": "cbl-logistica",
676
+ "name": "CBL Logistica",
677
+ "other_name": "",
678
+ "required_fields": []
679
  },
680
  {
681
+ "slug": "cbl-logistica-api",
682
+ "name": "CBL Logistica (API)",
683
+ "other_name": "",
684
+ "required_fields": []
685
  },
686
  {
687
+ "slug": "cdek",
688
+ "name": "CDEK",
689
+ "other_name": null,
690
+ "required_fields": []
691
  },
692
  {
693
+ "slug": "cdek-tr",
694
+ "name": "CDEK TR",
695
+ "other_name": "",
696
+ "required_fields": []
697
  },
698
  {
699
+ "slug": "cdldelivers",
700
+ "name": "CDL Last Mile",
701
+ "other_name": null,
702
+ "required_fields": []
703
  },
704
  {
705
+ "slug": "celeritas",
706
+ "name": "Celeritas Transporte, S.L",
707
+ "other_name": "",
708
+ "required_fields": []
709
  },
710
  {
711
+ "slug": "cello-square",
712
+ "name": "Cello Square",
713
+ "other_name": "",
714
+ "required_fields": []
715
  },
716
  {
717
+ "slug": "ceska-posta",
718
+ "name": "Česká Pošta",
719
+ "other_name": "Czech Post",
720
+ "required_fields": []
721
  },
722
  {
723
+ "slug": "ceva",
724
+ "name": "CEVA LOGISTICS",
725
+ "other_name": "",
726
+ "required_fields": []
727
  },
728
  {
729
+ "slug": "ceva-tracking",
730
+ "name": "CEVA Package",
731
+ "other_name": "",
732
+ "required_fields": []
 
 
733
  },
734
  {
735
+ "slug": "cfl-logistics",
736
+ "name": "CFL Logistics",
737
+ "other_name": "",
738
+ "required_fields": []
739
  },
740
  {
741
+ "slug": "cgs-express",
742
+ "name": "CGS Express",
743
+ "other_name": "超光速",
744
+ "required_fields": []
745
  },
746
  {
747
+ "slug": "champion-logistics",
748
+ "name": "Champion Logistics",
749
+ "other_name": "Champlog",
750
+ "required_fields": []
751
  },
752
  {
753
+ "slug": "china-ems",
754
+ "name": "China EMS (ePacket)",
755
+ "other_name": "中国邮政速递物流, ePacket, e-Packet, e Packet",
756
+ "required_fields": []
757
  },
758
  {
759
+ "slug": "china-post",
760
+ "name": "China Post",
761
+ "other_name": "中国邮政",
762
+ "required_fields": []
763
  },
764
  {
765
+ "slug": "chitchats",
766
+ "name": "Chit Chats",
767
+ "other_name": "",
768
+ "required_fields": []
769
  },
770
  {
771
+ "slug": "chrobinson",
772
+ "name": "C.H. Robinson Worldwide, Inc.",
773
+ "other_name": "",
774
+ "required_fields": [
775
+ "tracking_key"
776
+ ]
777
  },
778
  {
779
+ "slug": "chronopost-france",
780
+ "name": "Chronopost France",
781
+ "other_name": "La Poste EMS",
782
+ "required_fields": []
783
  },
784
  {
785
+ "slug": "chronopost-portugal",
786
+ "name": "Chronopost Portugal(DPD)",
787
+ "other_name": "Chronopost pt",
788
+ "required_fields": []
789
  },
790
  {
791
+ "slug": "citylinkexpress",
792
+ "name": "City-Link Express",
793
+ "other_name": "Citylink Malaysia",
794
+ "required_fields": []
795
  },
796
  {
797
+ "slug": "cj-gls",
798
+ "name": "CJ GLS",
799
+ "other_name": "CJ Korea Express, 씨제이지엘에스주식회사",
800
+ "required_fields": []
801
  },
802
  {
803
+ "slug": "cj-hk-international",
804
+ "name": "CJ Logistics International(Hong Kong)",
805
+ "other_name": null,
806
+ "required_fields": []
807
  },
808
  {
809
+ "slug": "cj-korea-thai",
810
+ "name": "CJ Korea Express",
811
+ "other_name": "",
812
+ "required_fields": []
813
  },
814
  {
815
+ "slug": "cj-malaysia",
816
+ "name": "CJ Century",
817
+ "other_name": "CJ Logistics Malaysia",
818
+ "required_fields": []
819
  },
820
  {
821
+ "slug": "cj-malaysia-international",
822
+ "name": "CJ Century (International)",
823
+ "other_name": "CJ Logistics",
824
+ "required_fields": []
825
  },
826
  {
827
+ "slug": "cj-philippines",
828
+ "name": "CJ Transnational Philippines",
829
+ "other_name": "",
830
+ "required_fields": []
831
  },
832
  {
833
+ "slug": "cjlogistics",
834
+ "name": "CJ Logistics International",
835
+ "other_name": "",
836
+ "required_fields": []
837
  },
838
  {
839
+ "slug": "cjpacket",
840
+ "name": "CJ Packet",
841
+ "other_name": "",
842
+ "required_fields": []
843
  },
844
  {
845
+ "slug": "cle-logistics",
846
+ "name": "CL E-Logistics Solutions Limited",
847
+ "other_name": "",
848
+ "required_fields": []
849
  },
850
  {
851
+ "slug": "clevy-links",
852
+ "name": "Clevy Links",
853
+ "other_name": "",
854
+ "required_fields": []
855
  },
856
  {
857
+ "slug": "cloudwish-asia",
858
+ "name": "Cloudwish Asia",
859
+ "other_name": "",
860
+ "required_fields": []
861
  },
862
  {
863
+ "slug": "cndexpress",
864
+ "name": "CND Express",
865
+ "other_name": "辰诺达",
866
+ "required_fields": []
867
  },
868
  {
869
+ "slug": "cnexps",
870
+ "name": "CNE Express",
871
+ "other_name": "国际快递",
872
+ "required_fields": []
873
  },
874
  {
875
+ "slug": "cnwangtong",
876
+ "name": "cnwangtong",
877
+ "other_name": null,
878
+ "required_fields": []
879
  },
880
  {
881
+ "slug": "colis-prive",
882
+ "name": "Colis Privé",
883
+ "other_name": "ColisPrivé",
884
+ "required_fields": [
885
+ "tracking_postal_code"
886
+ ]
887
  },
888
  {
889
+ "slug": "colissimo",
890
+ "name": "Colissimo",
891
+ "other_name": "Colissimo fr",
892
+ "required_fields": []
893
  },
894
  {
895
+ "slug": "collectco",
896
+ "name": "CollectCo",
897
+ "other_name": "",
898
+ "required_fields": []
899
  },
900
  {
901
+ "slug": "collectplus",
902
+ "name": "Collect+",
903
+ "other_name": "Collect Plus UK",
904
+ "required_fields": []
905
  },
906
  {
907
+ "slug": "collivery",
908
+ "name": "MDS Collivery Pty (Ltd)",
909
+ "other_name": "",
910
+ "required_fields": []
911
  },
912
  {
913
+ "slug": "comet-tech",
914
+ "name": "CometTech",
915
+ "other_name": "彗星科技",
916
+ "required_fields": []
917
  },
918
  {
919
+ "slug": "con-way",
920
+ "name": "Con-way Freight",
921
+ "other_name": "Conway",
922
+ "required_fields": []
923
  },
924
  {
925
+ "slug": "continental",
926
+ "name": "Continental",
927
+ "other_name": "",
928
+ "required_fields": []
929
  },
930
  {
931
+ "slug": "copa-courier",
932
+ "name": "Copa Airlines Courier",
933
+ "other_name": "Copa Courier",
934
+ "required_fields": []
935
  },
936
  {
937
+ "slug": "cope",
938
+ "name": "Cope Sensitive Freight",
939
+ "other_name": "",
940
+ "required_fields": []
941
  },
942
  {
943
+ "slug": "corporatecouriers-webhook",
944
+ "name": "Corporate Couriers",
945
+ "other_name": null,
946
+ "required_fields": []
947
  },
948
  {
949
+ "slug": "correos-de-mexico",
950
+ "name": "Correos de Mexico",
951
+ "other_name": "Mexico Post",
952
+ "required_fields": []
953
  },
954
  {
955
+ "slug": "correosexpress",
956
+ "name": "Correos Express",
957
+ "other_name": "",
958
+ "required_fields": []
959
  },
960
  {
961
+ "slug": "correosexpress-api",
962
+ "name": "Correos Express (API)",
963
+ "other_name": "",
964
+ "required_fields": []
965
  },
966
  {
967
+ "slug": "costmeticsnow",
968
+ "name": "Cosmetics Now",
969
+ "other_name": "CosmeticsNow",
970
+ "required_fields": []
971
  },
972
  {
973
+ "slug": "courant-plus",
974
+ "name": "Courant Plus",
975
+ "other_name": null,
976
+ "required_fields": [
977
+ "tracking_account_number"
978
+ ]
979
  },
980
  {
981
+ "slug": "courex",
982
+ "name": "Urbanfox",
983
+ "other_name": "",
984
+ "required_fields": []
985
  },
986
  {
987
+ "slug": "courier-plus",
988
+ "name": "Courier Plus",
989
+ "other_name": "Courier Plus",
990
+ "required_fields": []
 
 
991
  },
992
  {
993
+ "slug": "courierit",
994
+ "name": "Courier IT",
995
+ "other_name": "Courierit",
996
+ "required_fields": []
997
  },
998
  {
999
+ "slug": "courierpost",
1000
+ "name": "CourierPost",
1001
+ "other_name": "Express Couriers",
1002
+ "required_fields": []
1003
  },
1004
  {
1005
+ "slug": "couriers-please",
1006
+ "name": "Couriers Please",
1007
+ "other_name": "CouriersPlease",
1008
+ "required_fields": []
1009
  },
1010
  {
1011
+ "slug": "cpacket",
1012
+ "name": "cPacket",
1013
+ "other_name": "u52a0u90aeu5b9d",
1014
+ "required_fields": []
1015
  },
1016
  {
1017
+ "slug": "croshot",
1018
+ "name": "Croshot",
1019
+ "other_name": null,
1020
+ "required_fields": []
1021
  },
1022
  {
1023
+ "slug": "ctc-express",
1024
+ "name": "CTC Express",
1025
+ "other_name": "",
1026
+ "required_fields": []
1027
  },
1028
  {
1029
+ "slug": "cubyn",
1030
+ "name": "Cubyn",
1031
+ "other_name": "",
1032
+ "required_fields": []
1033
  },
1034
  {
1035
+ "slug": "cuckooexpress",
1036
+ "name": "Cuckoo Express",
1037
+ "other_name": "布谷鸟",
1038
+ "required_fields": []
1039
  },
1040
  {
1041
+ "slug": "cyprus-post",
1042
+ "name": "Cyprus Post",
1043
+ "other_name": "ΚΥΠΡΙΑΚΑ ΤΑΧΥΔΡΟΜΕΙΑ",
1044
+ "required_fields": []
1045
  },
1046
  {
1047
+ "slug": "dachser",
1048
+ "name": "DACHSER",
1049
+ "other_name": "Azkar",
1050
+ "required_fields": []
1051
  },
1052
  {
1053
+ "slug": "dajin",
1054
+ "name": "Shanghai Aqrum Chemical Logistics Co.Ltd",
1055
+ "other_name": "Dajin",
1056
+ "required_fields": []
1057
  },
1058
  {
1059
+ "slug": "danmark-post",
1060
+ "name": "PostNord Denmark",
1061
+ "other_name": "Danmark Post",
1062
+ "required_fields": []
1063
  },
1064
  {
1065
+ "slug": "danske-fragt",
1066
+ "name": "Danske Fragtmænd",
1067
+ "other_name": "Fragt DK",
1068
+ "required_fields": []
1069
  },
1070
  {
1071
+ "slug": "dao365",
1072
+ "name": "DAO365",
1073
+ "other_name": "",
1074
+ "required_fields": []
1075
  },
1076
  {
1077
+ "slug": "dawnwing",
1078
+ "name": "Dawn Wing",
1079
+ "other_name": "DPD Laser Express Logistics",
1080
+ "required_fields": []
1081
  },
1082
  {
1083
+ "slug": "dayton-freight",
1084
+ "name": "Dayton Freight",
1085
+ "other_name": "",
1086
+ "required_fields": []
 
 
1087
  },
1088
  {
1089
+ "slug": "dbschenker-se",
1090
+ "name": "DB Schenker",
1091
+ "other_name": "Deutsche Bahn",
1092
+ "required_fields": []
1093
  },
1094
  {
1095
+ "slug": "dbschenker-sv",
1096
+ "name": "DB Schenker Sweden",
1097
+ "other_name": "",
1098
+ "required_fields": []
1099
  },
1100
  {
1101
+ "slug": "ddexpress",
1102
+ "name": "DD Express Courier",
1103
+ "other_name": "",
1104
+ "required_fields": []
1105
  },
1106
  {
1107
+ "slug": "delcart-in",
1108
+ "name": "Delcart",
1109
+ "other_name": "",
1110
+ "required_fields": []
1111
  },
1112
  {
1113
+ "slug": "delhivery",
1114
+ "name": "Delhivery",
1115
+ "other_name": "Gharpay",
1116
+ "required_fields": []
1117
  },
1118
  {
1119
+ "slug": "deliveryontime",
1120
+ "name": "DELIVERYONTIME LOGISTICS PVT LTD",
1121
+ "other_name": "",
1122
+ "required_fields": []
1123
  },
1124
  {
1125
+ "slug": "delnext",
1126
+ "name": "Delnext",
1127
+ "other_name": "",
1128
+ "required_fields": []
1129
  },
1130
  {
1131
+ "slug": "deltec-courier",
1132
+ "name": "Deltec Courier",
1133
+ "other_name": "Deltec Interntional Courier",
1134
+ "required_fields": []
1135
  },
1136
  {
1137
+ "slug": "demandship",
1138
+ "name": "DemandShip",
1139
+ "other_name": "",
1140
+ "required_fields": []
1141
  },
1142
  {
1143
+ "slug": "descartes",
1144
+ "name": "Innovel",
1145
+ "other_name": "",
1146
+ "required_fields": []
1147
  },
1148
  {
1149
+ "slug": "designertransport-webhook",
1150
+ "name": "Designer Transport",
1151
+ "other_name": null,
1152
+ "required_fields": []
1153
  },
1154
  {
1155
+ "slug": "destiny",
1156
+ "name": "Destiny Transportation",
1157
+ "other_name": null,
1158
+ "required_fields": []
1159
  },
1160
  {
1161
+ "slug": "detrack",
1162
+ "name": "Detrack",
1163
+ "other_name": "Detrack Singapore",
1164
+ "required_fields": []
1165
  },
1166
  {
1167
+ "slug": "deutsch-post",
1168
+ "name": "Deutsche Post Mail",
1169
+ "other_name": "dpdhl",
1170
+ "required_fields": [
1171
+ "tracking_ship_date"
1172
+ ]
1173
  },
1174
  {
1175
+ "slug": "dex-i",
1176
+ "name": "DEX-I",
1177
+ "other_name": "",
1178
+ "required_fields": []
1179
  },
1180
  {
1181
+ "slug": "dhl",
1182
+ "name": "DHL Express",
1183
+ "other_name": "DHL International",
1184
+ "required_fields": []
1185
  },
1186
  {
1187
+ "slug": "dhl-active-tracing",
1188
+ "name": "DHL Active Tracing",
1189
+ "other_name": "",
1190
+ "required_fields": []
 
 
1191
  },
1192
  {
1193
+ "slug": "dhl-benelux",
1194
+ "name": "DHL Benelux",
1195
+ "other_name": "DHL TrackNet Benelux",
1196
+ "required_fields": []
1197
  },
1198
  {
1199
+ "slug": "dhl-deliverit",
1200
+ "name": "DHL 2-Mann-Handling",
1201
+ "other_name": "DHL Deliver IT",
1202
+ "required_fields": []
1203
  },
1204
  {
1205
+ "slug": "dhl-es",
1206
+ "name": "DHL Spain Domestic",
1207
+ "other_name": "DHL España",
1208
+ "required_fields": []
1209
  },
1210
  {
1211
+ "slug": "dhl-germany",
1212
+ "name": "Deutsche Post DHL",
1213
+ "other_name": "DHL Germany",
1214
+ "required_fields": []
1215
  },
1216
  {
1217
+ "slug": "dhl-germany-ftp",
1218
+ "name": "Deutsche Post DHL (FTP)",
1219
+ "other_name": "",
1220
+ "required_fields": []
1221
  },
1222
  {
1223
+ "slug": "dhl-global-forwarding",
1224
+ "name": "DHL Global Forwarding",
1225
+ "other_name": "DHL Logistics",
1226
+ "required_fields": []
1227
  },
1228
  {
1229
+ "slug": "dhl-global-mail",
1230
+ "name": "DHL eCommerce US",
1231
+ "other_name": "DHL Global Mail",
1232
+ "required_fields": []
1233
  },
1234
  {
1235
+ "slug": "dhl-global-mail-asia",
1236
+ "name": "DHL eCommerce Asia",
1237
+ "other_name": "DGM Asia",
1238
+ "required_fields": []
1239
  },
1240
  {
1241
+ "slug": "dhl-global-mail-asia-api",
1242
+ "name": "DHL eCommerce Asia (API)",
1243
+ "other_name": "",
1244
+ "required_fields": []
1245
  },
1246
  {
1247
+ "slug": "dhl-hk",
1248
+ "name": "DHL Hong Kong",
1249
+ "other_name": "DHL HK Domestic",
1250
+ "required_fields": []
1251
  },
1252
  {
1253
+ "slug": "dhl-nl",
1254
+ "name": "DHL Netherlands",
1255
+ "other_name": "DHL Nederlands",
1256
+ "required_fields": []
1257
  },
1258
  {
1259
+ "slug": "dhl-pieceid",
1260
+ "name": "DHL Express (Piece ID)",
1261
+ "other_name": "DHL International",
1262
+ "required_fields": []
1263
  },
1264
  {
1265
+ "slug": "dhl-poland",
1266
+ "name": "DHL Poland Domestic",
1267
+ "other_name": "DHL Polska",
1268
+ "required_fields": []
1269
  },
1270
  {
1271
+ "slug": "dhl-reference",
1272
+ "name": "DHl (Reference number)",
1273
+ "other_name": null,
1274
+ "required_fields": [
1275
+ "tracking_ship_date"
1276
+ ]
1277
  },
1278
  {
1279
+ "slug": "dhl-supply-chain-au",
1280
+ "name": "DHL Supply Chain Australia",
1281
+ "other_name": "DHL ConnectedView",
1282
+ "required_fields": []
1283
  },
1284
  {
1285
+ "slug": "dhl-supplychain-id",
1286
+ "name": "DHL Supply Chain Indonesia",
1287
+ "other_name": "",
1288
+ "required_fields": []
1289
  },
1290
  {
1291
+ "slug": "dhl-supplychain-in",
1292
+ "name": "DHL supply chain India",
1293
+ "other_name": "",
1294
+ "required_fields": []
1295
  },
1296
  {
1297
+ "slug": "dhlparcel-es",
1298
+ "name": "DHL Parcel Spain",
1299
+ "other_name": "",
1300
+ "required_fields": []
 
 
1301
  },
1302
  {
1303
+ "slug": "dhlparcel-nl",
1304
+ "name": "DHL Parcel NL",
1305
+ "other_name": "Selektvracht, dhlparcel.nl",
1306
+ "required_fields": []
1307
  },
1308
  {
1309
+ "slug": "dhlparcel-uk",
1310
+ "name": "DHL Parcel UK",
1311
+ "other_name": "",
1312
+ "required_fields": []
1313
  },
1314
  {
1315
+ "slug": "dicom",
1316
+ "name": "GLS Logistic Systems Canada Ltd./Dicom",
1317
+ "other_name": null,
1318
+ "required_fields": []
1319
  },
1320
  {
1321
+ "slug": "dimerco",
1322
+ "name": "Dimerco Express Group",
1323
+ "other_name": "",
1324
+ "required_fields": []
1325
  },
1326
  {
1327
+ "slug": "directfreight-au-ref",
1328
+ "name": "Direct Freight Express",
1329
+ "other_name": null,
1330
+ "required_fields": []
1331
  },
1332
  {
1333
+ "slug": "directlog",
1334
+ "name": "Directlog",
1335
+ "other_name": "Direct Express",
1336
+ "required_fields": []
1337
  },
1338
  {
1339
+ "slug": "dmm-network",
1340
+ "name": "DMM Network",
1341
+ "other_name": "dmmnetwork.it",
1342
+ "required_fields": []
1343
  },
1344
  {
1345
+ "slug": "dms-matrix",
1346
+ "name": "DMSMatrix",
1347
+ "other_name": "",
1348
+ "required_fields": []
1349
  },
1350
  {
1351
+ "slug": "dnj-express",
1352
+ "name": "DNJ Express",
1353
+ "other_name": "",
1354
+ "required_fields": []
1355
  },
1356
  {
1357
+ "slug": "doora",
1358
+ "name": "Doora Logistics",
1359
+ "other_name": "",
1360
+ "required_fields": []
1361
  },
1362
  {
1363
+ "slug": "doordash-webhook",
1364
+ "name": "DoorDash",
1365
+ "other_name": "",
1366
+ "required_fields": []
1367
  },
1368
  {
1369
+ "slug": "dotzot",
1370
+ "name": "Dotzot",
1371
+ "other_name": "Dotzot",
1372
+ "required_fields": []
1373
  },
1374
  {
1375
+ "slug": "dpd",
1376
+ "name": "DPD",
1377
+ "other_name": "Dynamic Parcel Distribution",
1378
+ "required_fields": []
1379
  },
1380
  {
1381
+ "slug": "dpd-de",
1382
+ "name": "DPD Germany",
1383
+ "other_name": "DPD Germany",
1384
+ "required_fields": []
 
 
1385
  },
1386
  {
1387
+ "slug": "dpd-fr-reference",
1388
+ "name": "DPD France",
1389
+ "other_name": "",
1390
+ "required_fields": [
1391
+ "tracking_account_number"
1392
+ ]
1393
  },
1394
  {
1395
+ "slug": "dpd-hk",
1396
+ "name": "DPD HK",
1397
+ "other_name": "",
1398
+ "required_fields": []
1399
  },
1400
  {
1401
+ "slug": "dpd-ireland",
1402
+ "name": "DPD Ireland",
1403
+ "other_name": "DPD ie",
1404
+ "required_fields": []
1405
  },
1406
  {
1407
+ "slug": "dpd-poland",
1408
+ "name": "DPD Poland",
1409
+ "other_name": "Dynamic Parcel Distribution Poland",
1410
+ "required_fields": []
1411
  },
1412
  {
1413
+ "slug": "dpd-ro",
1414
+ "name": "DPD Romania",
1415
+ "other_name": "",
1416
+ "required_fields": []
1417
  },
1418
  {
1419
+ "slug": "dpd-ru",
1420
+ "name": "DPD Russia",
1421
+ "other_name": "",
1422
+ "required_fields": []
1423
  },
1424
  {
1425
+ "slug": "dpd-uk",
1426
+ "name": "DPD UK",
1427
+ "other_name": "Dynamic Parcel Distribution UK",
1428
+ "required_fields": []
1429
  },
1430
  {
1431
+ "slug": "dpe-express",
1432
+ "name": "DPE Express",
1433
+ "other_name": "Delivery Perfect Express Co.",
1434
+ "required_fields": []
1435
  },
1436
  {
1437
+ "slug": "dpe-za",
1438
+ "name": "DPE South Africa",
1439
+ "other_name": "DPE Worldwide Express",
1440
+ "required_fields": []
1441
  },
1442
  {
1443
+ "slug": "dpex",
1444
+ "name": "DPEX",
1445
+ "other_name": "TGX, Toll Global Express Asia",
1446
+ "required_fields": []
1447
  },
1448
  {
1449
+ "slug": "dsv",
1450
+ "name": "DSV",
1451
+ "other_name": "",
1452
+ "required_fields": []
1453
  },
1454
  {
1455
+ "slug": "dtdc",
1456
+ "name": "DTDC India",
1457
+ "other_name": "DTDC Courier & Cargo",
1458
+ "required_fields": []
 
 
1459
  },
1460
  {
1461
+ "slug": "dtdc-au",
1462
+ "name": "DTDC Australia",
1463
+ "other_name": "",
1464
+ "required_fields": []
1465
  },
1466
  {
1467
+ "slug": "dtdc-express",
1468
+ "name": "DTDC Express Global PTE LTD",
1469
+ "other_name": "",
1470
+ "required_fields": []
1471
  },
1472
  {
1473
+ "slug": "dx",
1474
+ "name": "DX",
1475
+ "other_name": "-",
1476
+ "required_fields": [
1477
+ "tracking_account_number"
1478
+ ]
1479
  },
1480
  {
1481
+ "slug": "dx-b2b-connum",
1482
+ "name": "DX (B2B)",
1483
+ "other_name": null,
1484
+ "required_fields": []
1485
  },
1486
  {
1487
+ "slug": "dx-freight",
1488
+ "name": "DX Freight",
1489
+ "other_name": "",
1490
+ "required_fields": []
1491
  },
1492
  {
1493
+ "slug": "dx-sftp",
1494
+ "name": "DX (SFTP)",
1495
+ "other_name": "",
1496
+ "required_fields": []
1497
  },
1498
  {
1499
+ "slug": "dylt",
1500
+ "name": "Daylight Transport, LLC",
1501
+ "other_name": "",
1502
+ "required_fields": []
1503
  },
1504
  {
1505
+ "slug": "dynamic-logistics",
1506
+ "name": "Dynamic Logistics",
1507
+ "other_name": "Dynamic Logistics Thailand",
1508
+ "required_fields": [
1509
+ "tracking_account_number"
1510
+ ]
1511
  },
1512
  {
1513
+ "slug": "easy-mail",
1514
+ "name": "Easy Mail",
1515
+ "other_name": "",
1516
+ "required_fields": []
1517
  },
1518
  {
1519
+ "slug": "ec-firstclass",
1520
+ "name": "Chukou1",
1521
+ "other_name": "出口易、Chukou1、CK1",
1522
+ "required_fields": []
1523
  },
1524
  {
1525
+ "slug": "ecargo-asia",
1526
+ "name": "Ecargo",
1527
+ "other_name": "Ecargo Pte. Ltd",
1528
+ "required_fields": []
1529
  },
1530
  {
1531
+ "slug": "echo",
1532
+ "name": "Echo",
1533
+ "other_name": "Echo Global Logistics",
1534
+ "required_fields": []
1535
  },
1536
  {
1537
+ "slug": "ecms",
1538
+ "name": "ECMS International Logistics Co., Ltd.",
1539
+ "other_name": "",
1540
+ "required_fields": []
1541
  },
1542
  {
1543
+ "slug": "ecom-express",
1544
+ "name": "Ecom Express",
1545
+ "other_name": "EcomExpress",
1546
+ "required_fields": []
1547
  },
1548
  {
1549
+ "slug": "ecourier",
1550
+ "name": "eCourier",
1551
+ "other_name": "",
1552
+ "required_fields": []
1553
  },
1554
  {
1555
+ "slug": "ecoutier",
1556
+ "name": "eCoutier",
1557
+ "other_name": "",
1558
+ "required_fields": []
1559
  },
1560
  {
1561
+ "slug": "efex",
1562
+ "name": "eFEx (E-Commerce Fulfillment & Express)",
1563
+ "other_name": "",
1564
+ "required_fields": []
1565
  },
1566
  {
1567
+ "slug": "efs",
1568
+ "name": "EFS (E-commerce Fulfillment Service)",
1569
+ "other_name": "",
1570
+ "required_fields": []
1571
  },
1572
  {
1573
+ "slug": "ekart",
1574
+ "name": "Ekart",
1575
+ "other_name": "Ekart Logistics",
1576
+ "required_fields": []
1577
  },
1578
  {
1579
+ "slug": "elian-post",
1580
+ "name": "Yilian (Elian) Supply Chain",
1581
+ "other_name": null,
1582
+ "required_fields": []
1583
  },
1584
  {
1585
+ "slug": "elogistica",
1586
+ "name": "ELogistica",
1587
+ "other_name": null,
1588
+ "required_fields": []
1589
  },
1590
  {
1591
+ "slug": "elta-courier",
1592
+ "name": "ELTA Hellenic Post",
1593
+ "other_name": "Greece Post, Ελληνικά Ταχυδρομεία, ELTA Courier, Ταχυμεταφορές ΕΛΤΑ",
1594
+ "required_fields": []
1595
  },
1596
  {
1597
+ "slug": "emirates-post",
1598
+ "name": "Emirates Post",
1599
+ "other_name": "مجموعة بريد الإمارات, UAE Post",
1600
+ "required_fields": []
1601
  },
1602
  {
1603
+ "slug": "empsexpress",
1604
+ "name": "EMPS Express",
1605
+ "other_name": "快信快包",
1606
+ "required_fields": []
1607
  },
1608
  {
1609
+ "slug": "endeavour-delivery",
1610
+ "name": "Endeavour Delivery",
1611
+ "other_name": "",
1612
+ "required_fields": [
1613
+ "tracking_postal_code"
1614
+ ]
1615
  },
1616
  {
1617
+ "slug": "ensenda",
1618
+ "name": "Ensenda",
1619
+ "other_name": "",
1620
+ "required_fields": []
1621
  },
1622
  {
1623
+ "slug": "envialia",
1624
+ "name": "Envialia",
1625
+ "other_name": "Envialia Spain",
1626
+ "required_fields": []
1627
  },
1628
  {
1629
+ "slug": "ep-box",
1630
+ "name": "EP-Box",
1631
+ "other_name": "",
1632
+ "required_fields": []
1633
  },
1634
  {
1635
+ "slug": "eparcel-kr",
1636
+ "name": "eParcel Korea",
1637
+ "other_name": "Yong Seoung",
1638
+ "required_fields": []
1639
  },
1640
  {
1641
+ "slug": "equick-cn",
1642
+ "name": "Equick China",
1643
+ "other_name": "北京网易速达",
1644
+ "required_fields": []
1645
  },
1646
  {
1647
+ "slug": "eshipping",
1648
+ "name": "Eshipping",
1649
+ "other_name": "Eshipping Global Supply Chain Management(Shenzhen)Co. Ltd",
1650
+ "required_fields": []
1651
  },
1652
  {
1653
+ "slug": "estafeta",
1654
+ "name": "Estafeta",
1655
+ "other_name": "Estafeta Mexicana",
1656
+ "required_fields": []
1657
  },
1658
  {
1659
+ "slug": "estes",
1660
+ "name": "Estes",
1661
+ "other_name": "Estes Express Lines",
1662
+ "required_fields": []
1663
  },
1664
  {
1665
+ "slug": "etomars",
1666
+ "name": "Etomars",
1667
+ "other_name": "",
1668
+ "required_fields": []
1669
  },
1670
  {
1671
+ "slug": "etotal",
1672
+ "name": "eTotal Solution Limited",
1673
+ "other_name": "",
1674
+ "required_fields": []
1675
  },
1676
  {
1677
+ "slug": "ets-express",
1678
+ "name": "RETS express",
1679
+ "other_name": "绥芬河俄通收国际货物运输代理有限责任公司",
1680
+ "required_fields": []
 
 
1681
  },
1682
  {
1683
+ "slug": "eu-fleet-solutions",
1684
+ "name": "EU Fleet Solutions",
1685
+ "other_name": "",
1686
+ "required_fields": [
1687
+ "tracking_postal_code"
1688
+ ]
1689
  },
1690
  {
1691
+ "slug": "eurodis",
1692
+ "name": "Eurodis",
1693
+ "other_name": "",
1694
+ "required_fields": []
1695
  },
1696
  {
1697
+ "slug": "exapaq",
1698
+ "name": "DPD France (formerly exapaq)",
1699
+ "other_name": "Exapaq",
1700
+ "required_fields": []
1701
  },
1702
  {
1703
+ "slug": "expeditors",
1704
+ "name": "Expeditors",
1705
+ "other_name": "",
1706
+ "required_fields": []
1707
  },
1708
  {
1709
+ "slug": "expeditors-api",
1710
+ "name": "Expeditors API",
1711
+ "other_name": "",
1712
+ "required_fields": []
1713
  },
1714
  {
1715
+ "slug": "expeditors-api-ref",
1716
+ "name": "Expeditors API Reference",
1717
+ "other_name": "",
1718
+ "required_fields": []
1719
  },
1720
  {
1721
+ "slug": "expresssale",
1722
+ "name": "Expresssale",
1723
+ "other_name": "",
1724
+ "required_fields": []
1725
  },
1726
  {
1727
+ "slug": "ezship",
1728
+ "name": "EZship",
1729
+ "other_name": "",
1730
+ "required_fields": []
1731
  },
1732
  {
1733
+ "slug": "fan",
1734
+ "name": "FAN COURIER EXPRESS",
1735
+ "other_name": null,
1736
+ "required_fields": []
 
 
1737
  },
1738
  {
1739
+ "slug": "far-international",
1740
+ "name": "FAR international",
1741
+ "other_name": "",
1742
+ "required_fields": []
1743
  },
1744
  {
1745
+ "slug": "fastrak-th",
1746
+ "name": "Fastrak Services",
1747
+ "other_name": "Fastrak Advanced Delivery Systems",
1748
+ "required_fields": []
1749
  },
1750
  {
1751
+ "slug": "fasttrack",
1752
+ "name": "Fasttrack",
1753
+ "other_name": "",
1754
+ "required_fields": []
 
 
1755
  },
1756
  {
1757
+ "slug": "fastway-au",
1758
+ "name": "Aramex Australia (formerly Fastway AU)",
1759
+ "other_name": "Fastway Couriers",
1760
+ "required_fields": []
1761
  },
1762
  {
1763
+ "slug": "fastway-ireland",
1764
+ "name": "Fastway Ireland",
1765
+ "other_name": "Fastway Couriers",
1766
+ "required_fields": []
1767
  },
1768
  {
1769
+ "slug": "fastway-nz",
1770
+ "name": "Fastway New Zealand",
1771
+ "other_name": "",
1772
+ "required_fields": []
1773
  },
1774
  {
1775
+ "slug": "fastway-za",
1776
+ "name": "Fastway South Africa",
1777
+ "other_name": "Fastway Couriers",
1778
+ "required_fields": []
1779
  },
1780
  {
1781
+ "slug": "fedex",
1782
+ "name": "FedEx",
1783
+ "other_name": "Federal Express",
1784
+ "required_fields": []
1785
  },
1786
  {
1787
+ "slug": "fedex-crossborder",
1788
+ "name": "Fedex Cross Border",
1789
+ "other_name": "",
1790
+ "required_fields": []
1791
  },
1792
  {
1793
+ "slug": "fedex-fims",
1794
+ "name": "FedEx International MailService",
1795
+ "other_name": "",
1796
+ "required_fields": []
1797
  },
1798
  {
1799
+ "slug": "fedex-freight",
1800
+ "name": "FedEx Freight",
1801
+ "other_name": "FedEx LTL",
1802
+ "required_fields": []
1803
  },
1804
  {
1805
+ "slug": "fedex-uk",
1806
+ "name": "FedEx UK",
1807
+ "other_name": "FedEx United Kingdom",
1808
+ "required_fields": []
1809
  },
1810
  {
1811
+ "slug": "fercam",
1812
+ "name": "FERCAM Logistics & Transport",
1813
+ "other_name": "FERCAM SpA",
1814
+ "required_fields": []
1815
  },
1816
  {
1817
+ "slug": "fetchr",
1818
+ "name": "Fetchr",
1819
+ "other_name": "",
1820
+ "required_fields": []
1821
  },
1822
  {
1823
+ "slug": "fetchr-webhook",
1824
+ "name": "Mena 360 (Fetchr)",
1825
+ "other_name": "",
1826
+ "required_fields": []
1827
  },
1828
  {
1829
+ "slug": "first-flight",
1830
+ "name": "First Flight Couriers",
1831
+ "other_name": "FirstFlight India",
1832
+ "required_fields": []
1833
  },
1834
  {
1835
+ "slug": "first-logistics",
1836
+ "name": "First Logistics",
1837
+ "other_name": "PT Synergy First Logistics",
1838
+ "required_fields": []
1839
  },
1840
  {
1841
+ "slug": "firstmile",
1842
+ "name": "FirstMile",
1843
+ "other_name": "",
1844
+ "required_fields": []
1845
  },
1846
  {
1847
+ "slug": "fitzmark-api",
1848
+ "name": "FitzMark",
1849
+ "other_name": "",
1850
+ "required_fields": []
1851
  },
1852
  {
1853
+ "slug": "flytexpress",
1854
+ "name": "Flyt Express",
1855
+ "other_name": "飞特物流",
1856
+ "required_fields": []
1857
  },
1858
  {
1859
+ "slug": "fmx",
1860
+ "name": "FMX",
1861
+ "other_name": "",
1862
+ "required_fields": []
1863
  },
1864
  {
1865
+ "slug": "fonsen",
1866
+ "name": "Fonsen Logistics",
1867
+ "other_name": "",
1868
+ "required_fields": []
1869
  },
1870
  {
1871
+ "slug": "forrun",
1872
+ "name": "forrun Pvt Ltd (Arpatech Venture)",
1873
+ "other_name": "",
1874
+ "required_fields": []
1875
  },
1876
  {
1877
+ "slug": "freterapido",
1878
+ "name": "Frete Rápido",
1879
+ "other_name": "",
1880
+ "required_fields": []
1881
  },
1882
  {
1883
+ "slug": "gati-kwe",
1884
+ "name": "Gati-KWE",
1885
+ "other_name": "Gati-Kintetsu Express",
1886
+ "required_fields": []
1887
  },
1888
  {
1889
+ "slug": "gba",
1890
+ "name": "GBA Services Ltd",
1891
+ "other_name": "",
1892
+ "required_fields": []
1893
  },
1894
  {
1895
+ "slug": "gbs-broker",
1896
+ "name": "GBS-Broker",
1897
+ "other_name": null,
1898
+ "required_fields": []
1899
  },
1900
  {
1901
+ "slug": "gdex",
1902
+ "name": "GDEX",
1903
+ "other_name": "GD Express",
1904
+ "required_fields": []
1905
  },
1906
  {
1907
+ "slug": "gemworldwide",
1908
+ "name": "GEM Worldwide",
1909
+ "other_name": "",
1910
+ "required_fields": []
1911
  },
1912
  {
1913
+ "slug": "general-overnight",
1914
+ "name": "Go!Express and logistics",
1915
+ "other_name": "",
1916
+ "required_fields": []
1917
  },
1918
  {
1919
+ "slug": "geodis-calberson-fr",
1920
+ "name": "GEODIS - Distribution & Express",
1921
+ "other_name": "Geodiscalberson",
1922
+ "required_fields": []
1923
  },
1924
  {
1925
+ "slug": "geodis-espace",
1926
+ "name": "Geodis E-space",
1927
+ "other_name": "Geodis Distribution & Express",
1928
+ "required_fields": [
1929
+ "tracking_key"
1930
+ ]
1931
  },
1932
  {
1933
+ "slug": "ghn",
1934
+ "name": "Giao hàng nhanh",
1935
+ "other_name": "Giaohangnhanh.vn, GHN",
1936
+ "required_fields": []
1937
  },
1938
  {
1939
+ "slug": "gio-express",
1940
+ "name": "Gio Express",
1941
+ "other_name": null,
1942
+ "required_fields": []
1943
  },
1944
  {
1945
+ "slug": "global-express",
1946
+ "name": "Tai Wan Global Business",
1947
+ "other_name": "全球商务快递",
1948
+ "required_fields": []
1949
  },
1950
  {
1951
+ "slug": "globaltranz",
1952
+ "name": "GlobalTranz",
1953
+ "other_name": "",
1954
+ "required_fields": []
1955
  },
1956
  {
1957
+ "slug": "globegistics",
1958
+ "name": "Globegistics Inc.",
1959
+ "other_name": "",
1960
+ "required_fields": []
1961
  },
1962
  {
1963
+ "slug": "gls",
1964
+ "name": "GLS",
1965
+ "other_name": "General Logistics Systems",
1966
+ "required_fields": []
 
 
1967
  },
1968
  {
1969
+ "slug": "gls-croatia",
1970
+ "name": "GLS Croatia",
1971
+ "other_name": "",
1972
+ "required_fields": []
1973
  },
1974
  {
1975
+ "slug": "gls-cz",
1976
+ "name": "GLS Czech Republic",
1977
+ "other_name": "",
1978
+ "required_fields": []
1979
  },
1980
  {
1981
+ "slug": "gls-da",
1982
+ "name": "GLS Denmark",
1983
+ "other_name": null,
1984
+ "required_fields": []
1985
  },
1986
  {
1987
+ "slug": "gls-italy",
1988
+ "name": "GLS Italy",
1989
+ "other_name": "GLS Corriere Espresso",
1990
+ "required_fields": []
1991
  },
1992
  {
1993
+ "slug": "gls-netherlands",
1994
+ "name": "GLS Netherlands",
1995
+ "other_name": "GLS NL",
1996
+ "required_fields": [
1997
+ "tracking_postal_code"
1998
+ ]
1999
  },
2000
  {
2001
+ "slug": "gls-slovakia",
2002
+ "name": "GLS General Logistics Systems Slovakia s.r.o.",
2003
+ "other_name": "",
2004
+ "required_fields": []
2005
  },
2006
  {
2007
+ "slug": "gls-slovenia",
2008
+ "name": "GLS Slovenia",
2009
+ "other_name": "",
2010
+ "required_fields": []
2011
  },
2012
  {
2013
+ "slug": "gls-spain",
2014
+ "name": "GLS Spain",
2015
+ "other_name": "",
2016
+ "required_fields": [
2017
+ "tracking_key"
2018
+ ]
2019
  },
2020
  {
2021
+ "slug": "gofly",
2022
+ "name": "GoFly",
2023
+ "other_name": "GoFlyi",
2024
+ "required_fields": []
2025
  },
2026
  {
2027
+ "slug": "gojavas",
2028
+ "name": "GoJavas",
2029
+ "other_name": "Javas",
2030
+ "required_fields": []
2031
  },
2032
  {
2033
+ "slug": "grab-webhook",
2034
+ "name": "Grab",
2035
+ "other_name": null,
2036
+ "required_fields": []
2037
  },
2038
  {
2039
+ "slug": "greyhound",
2040
+ "name": "Greyhound",
2041
+ "other_name": "Greyhound Package Express",
2042
+ "required_fields": []
2043
  },
2044
  {
2045
+ "slug": "gsi-express",
2046
+ "name": "GSI EXPRESS",
2047
+ "other_name": "",
2048
+ "required_fields": []
2049
  },
2050
  {
2051
+ "slug": "gso",
2052
+ "name": "GSO(GLS-USA)",
2053
+ "other_name": "GSO Freight",
2054
+ "required_fields": []
2055
  },
2056
  {
2057
+ "slug": "hct-logistics",
2058
+ "name": "HCT LOGISTICS CO.LTD.",
2059
+ "other_name": "",
2060
+ "required_fields": []
2061
  },
2062
  {
2063
+ "slug": "hdb",
2064
+ "name": "Haidaibao",
2065
+ "other_name": "",
2066
+ "required_fields": []
2067
  },
2068
  {
2069
+ "slug": "hdb-box",
2070
+ "name": "Haidaibao (BOX)",
2071
+ "other_name": "",
2072
+ "required_fields": []
2073
  },
2074
  {
2075
+ "slug": "helthjem",
2076
+ "name": "Helthjem",
2077
+ "other_name": null,
2078
+ "required_fields": []
2079
  },
2080
  {
2081
+ "slug": "hermes",
2082
+ "name": "Hermesworld",
2083
+ "other_name": "Hermes-europe UK",
2084
+ "required_fields": []
2085
  },
2086
  {
2087
+ "slug": "hermes-de",
2088
+ "name": "Hermes Germany",
2089
+ "other_name": "myhermes.de, Hermes Logistik Gruppe Deutschland",
2090
+ "required_fields": []
2091
  },
2092
  {
2093
+ "slug": "hermes-it",
2094
+ "name": "Hermes Italy",
2095
+ "other_name": "",
2096
+ "required_fields": []
2097
  },
2098
  {
2099
+ "slug": "hh-exp",
2100
+ "name": "Hua Han Logistics",
2101
+ "other_name": "u534eu7ff0u56fdu9645u7269u6d41",
2102
+ "required_fields": []
2103
  },
2104
  {
2105
+ "slug": "hipshipper",
2106
+ "name": "Hipshipper",
2107
+ "other_name": "",
2108
+ "required_fields": []
2109
  },
2110
  {
2111
+ "slug": "holisol",
2112
+ "name": "Holisol",
2113
+ "other_name": "",
2114
+ "required_fields": []
2115
  },
2116
  {
2117
+ "slug": "home-delivery-solutions",
2118
+ "name": "Home Delivery Solutions Ltd",
2119
+ "other_name": null,
2120
+ "required_fields": []
2121
  },
2122
  {
2123
+ "slug": "homelogistics",
2124
+ "name": "Home Logistics",
2125
+ "other_name": null,
2126
+ "required_fields": []
2127
  },
2128
  {
2129
+ "slug": "hong-kong-post",
2130
+ "name": "Hong Kong Post",
2131
+ "other_name": "香港郵政",
2132
+ "required_fields": []
2133
  },
2134
  {
2135
+ "slug": "hrvatska-posta",
2136
+ "name": "Hrvatska Pošta",
2137
+ "other_name": "Croatia Post",
2138
+ "required_fields": []
2139
  },
2140
  {
2141
+ "slug": "hsm-global",
2142
+ "name": "HSM Global",
2143
+ "other_name": null,
2144
+ "required_fields": []
2145
  },
2146
  {
2147
+ "slug": "hunter-express",
2148
+ "name": "Hunter Express",
2149
+ "other_name": "",
2150
+ "required_fields": []
2151
  },
2152
  {
2153
+ "slug": "huodull",
2154
+ "name": "Huodull",
2155
+ "other_name": "货兜",
2156
+ "required_fields": []
2157
  },
2158
  {
2159
+ "slug": "hx-express",
2160
+ "name": "HX Express",
2161
+ "other_name": "",
2162
+ "required_fields": []
2163
  },
2164
  {
2165
+ "slug": "i-dika",
2166
+ "name": "i-dika",
2167
+ "other_name": "",
2168
+ "required_fields": []
2169
  },
2170
  {
2171
+ "slug": "i-parcel",
2172
+ "name": "i-parcel",
2173
+ "other_name": "iparcel",
2174
+ "required_fields": []
2175
  },
2176
  {
2177
+ "slug": "idexpress",
2178
+ "name": "IDEX",
2179
+ "other_name": "上海宏杉国际物流",
2180
+ "required_fields": []
2181
  },
2182
  {
2183
+ "slug": "ids-logistics",
2184
+ "name": "IDS Logistics",
2185
+ "other_name": "",
2186
+ "required_fields": []
2187
  },
2188
  {
2189
+ "slug": "imexglobalsolutions",
2190
+ "name": "IMEX Global Solutions",
2191
+ "other_name": "",
2192
+ "required_fields": []
2193
  },
2194
  {
2195
+ "slug": "iml",
2196
+ "name": "IML",
2197
+ "other_name": null,
2198
+ "required_fields": []
2199
  },
2200
  {
2201
+ "slug": "imxmail",
2202
+ "name": "IMX Mail",
2203
+ "other_name": "IMX International Mail Consolidator",
2204
+ "required_fields": []
2205
  },
2206
  {
2207
+ "slug": "india-post",
2208
+ "name": "India Post Domestic",
2209
+ "other_name": "भारतीय डाक",
2210
+ "required_fields": []
2211
  },
2212
  {
2213
+ "slug": "india-post-int",
2214
+ "name": "India Post International",
2215
+ "other_name": "भारतीय डाक, Speed Post & eMO, EMS, IPS Web",
2216
+ "required_fields": []
2217
  },
2218
  {
2219
+ "slug": "inexpost",
2220
+ "name": "Inexpost",
2221
+ "other_name": "",
2222
+ "required_fields": []
2223
  },
2224
  {
2225
+ "slug": "inpost-paczkomaty",
2226
+ "name": "InPost Paczkomaty",
2227
+ "other_name": "",
2228
+ "required_fields": []
2229
  },
2230
  {
2231
+ "slug": "intel-valley",
2232
+ "name": "Intel-Valley Supply chain (ShenZhen) Co. Ltd",
2233
+ "other_name": "智谷供应链(深圳)有限公司",
2234
+ "required_fields": []
2235
  },
2236
  {
2237
+ "slug": "intelipost",
2238
+ "name": "Intelipost (TMS for LATAM)",
2239
+ "other_name": "",
2240
+ "required_fields": []
2241
  },
2242
  {
2243
+ "slug": "interlink-express",
2244
+ "name": "DPD Local",
2245
+ "other_name": "Interlink UK",
2246
+ "required_fields": []
2247
  },
2248
  {
2249
+ "slug": "interlink-express-reference",
2250
+ "name": "DPD Local reference",
2251
+ "other_name": "",
2252
+ "required_fields": [
2253
+ "tracking_postal_code"
2254
+ ]
2255
  },
2256
  {
2257
+ "slug": "international-seur",
2258
+ "name": "International Seur",
2259
+ "other_name": "SEUR Internacional",
2260
+ "required_fields": []
2261
  },
2262
  {
2263
+ "slug": "international-seur-api",
2264
+ "name": "International Seur API",
2265
+ "other_name": null,
2266
+ "required_fields": [
2267
+ "tracking_ship_date"
2268
+ ]
2269
  },
2270
  {
2271
+ "slug": "interparcel-au",
2272
+ "name": "Interparcel Australia",
2273
+ "other_name": "Interparcel",
2274
+ "required_fields": []
2275
  },
2276
  {
2277
+ "slug": "interparcel-nz",
2278
+ "name": "Interparcel New Zealand",
2279
+ "other_name": "Interparcel",
2280
+ "required_fields": []
2281
  },
2282
  {
2283
+ "slug": "interparcel-uk",
2284
+ "name": "Interparcel UK",
2285
+ "other_name": "Interparcel",
2286
+ "required_fields": []
2287
  },
2288
  {
2289
+ "slug": "intexpress",
2290
+ "name": "Internet Express",
2291
+ "other_name": "",
2292
+ "required_fields": []
2293
  },
2294
  {
2295
+ "slug": "israel-post",
2296
+ "name": "Israel Post",
2297
+ "other_name": "חברת דואר ישראל",
2298
+ "required_fields": []
2299
  },
2300
  {
2301
+ "slug": "israel-post-domestic",
2302
+ "name": "Israel Post Domestic",
2303
+ "other_name": "חברת דואר ישראל מקומית",
2304
+ "required_fields": []
2305
  },
2306
  {
2307
+ "slug": "italy-sda",
2308
+ "name": "Italy SDA",
2309
+ "other_name": "SDA Express Courier",
2310
+ "required_fields": []
2311
  },
2312
  {
2313
+ "slug": "ivoy-webhook",
2314
+ "name": "Ivoy",
2315
+ "other_name": "",
2316
+ "required_fields": []
2317
  },
2318
  {
2319
+ "slug": "j-net",
2320
+ "name": "J-Net",
2321
+ "other_name": "",
2322
+ "required_fields": []
2323
  },
2324
  {
2325
+ "slug": "jam-express",
2326
+ "name": "Jam Express",
2327
+ "other_name": "JAM Global Express",
2328
+ "required_fields": []
2329
  },
2330
  {
2331
+ "slug": "janco",
2332
+ "name": "Janco Ecommerce",
2333
+ "other_name": "",
2334
+ "required_fields": []
2335
  },
2336
  {
2337
+ "slug": "janio",
2338
+ "name": "Janio Asia",
2339
+ "other_name": "",
2340
+ "required_fields": []
2341
  },
2342
  {
2343
+ "slug": "japan-post",
2344
+ "name": "Japan Post",
2345
+ "other_name": "日本郵便",
2346
+ "required_fields": []
2347
  },
2348
  {
2349
+ "slug": "jayonexpress",
2350
+ "name": "Jayon Express (JEX)",
2351
+ "other_name": "",
2352
+ "required_fields": []
2353
  },
2354
  {
2355
+ "slug": "jcex",
2356
+ "name": "JCEX",
2357
+ "other_name": "JiaCheng, 杭州佳成",
2358
+ "required_fields": []
2359
  },
2360
  {
2361
+ "slug": "jersey-post",
2362
+ "name": "Jersey Post",
2363
+ "other_name": "",
2364
+ "required_fields": []
2365
  },
2366
  {
2367
+ "slug": "jet-ship",
2368
+ "name": "Jet-Ship Worldwide",
2369
+ "other_name": "",
2370
+ "required_fields": []
2371
  },
2372
  {
2373
+ "slug": "jindouyun",
2374
+ "name": "金斗云物流",
2375
+ "other_name": "JINDOUYUN LOGISTICS",
2376
+ "required_fields": []
2377
  },
2378
  {
2379
+ "slug": "jinsung",
2380
+ "name": "JINSUNG TRADING",
2381
+ "other_name": "",
2382
+ "required_fields": []
2383
  },
2384
  {
2385
+ "slug": "jne",
2386
+ "name": "JNE",
2387
+ "other_name": "Express Across Nation, Tiki Jalur Nugraha Ekakurir",
2388
+ "required_fields": []
2389
  },
2390
  {
2391
+ "slug": "jne-api",
2392
+ "name": "JNE (API)",
2393
+ "other_name": "",
2394
+ "required_fields": []
2395
  },
2396
  {
2397
+ "slug": "jocom",
2398
+ "name": "Jocom",
2399
+ "other_name": "",
2400
+ "required_fields": []
2401
  },
2402
  {
2403
+ "slug": "jtexpress",
2404
+ "name": "J&T EXPRESS MALAYSIA",
2405
+ "other_name": "",
2406
+ "required_fields": []
2407
  },
2408
  {
2409
+ "slug": "jx",
2410
+ "name": "JX",
2411
+ "other_name": "",
2412
+ "required_fields": []
2413
  },
2414
  {
2415
+ "slug": "k1-express",
2416
+ "name": "K1 Express",
2417
+ "other_name": "",
2418
+ "required_fields": []
2419
  },
2420
  {
2421
+ "slug": "kangaroo-my",
2422
+ "name": "Kangaroo Worldwide Express",
2423
+ "other_name": "",
2424
+ "required_fields": []
2425
  },
2426
  {
2427
+ "slug": "kec",
2428
+ "name": "KEC",
2429
+ "other_name": "",
2430
+ "required_fields": []
2431
  },
2432
  {
2433
+ "slug": "kerry-ecommerce",
2434
+ "name": "Kerry eCommerce",
2435
+ "other_name": "",
2436
+ "required_fields": []
2437
  },
2438
  {
2439
+ "slug": "kerry-logistics",
2440
+ "name": "Kerry Express Thailand",
2441
+ "other_name": "嘉里物流, Kerry Logistics",
2442
+ "required_fields": []
2443
  },
2444
  {
2445
+ "slug": "kerrytj",
2446
+ "name": "Kerry TJ Logistics",
2447
+ "other_name": "KTJ嘉里大榮物流",
2448
+ "required_fields": []
 
 
2449
  },
2450
  {
2451
+ "slug": "kerryttc-vn",
2452
+ "name": "Kerry Express (Vietnam) Co Ltd",
2453
+ "other_name": "KTTC",
2454
+ "required_fields": []
2455
  },
2456
  {
2457
+ "slug": "kgmhub",
2458
+ "name": "KGM Hub",
2459
+ "other_name": "KGM",
2460
+ "required_fields": []
2461
  },
2462
  {
2463
+ "slug": "kiala",
2464
+ "name": "Kiala",
2465
+ "other_name": "",
2466
+ "required_fields": []
 
 
2467
  },
2468
  {
2469
+ "slug": "kn",
2470
+ "name": "Kuehne + Nagel",
2471
+ "other_name": "KN",
2472
+ "required_fields": []
2473
  },
2474
  {
2475
+ "slug": "knuk",
2476
+ "name": "KNAirlink Aerospace Domestic Network",
2477
+ "other_name": "",
2478
+ "required_fields": []
2479
  },
2480
  {
2481
+ "slug": "korea-post",
2482
+ "name": "Korea Post EMS",
2483
+ "other_name": "우정사업본부",
2484
+ "required_fields": []
2485
  },
2486
  {
2487
+ "slug": "kpost",
2488
+ "name": "Korea Post",
2489
+ "other_name": "우정사업본부",
2490
+ "required_fields": []
2491
  },
2492
  {
2493
+ "slug": "kronos",
2494
+ "name": "Kronos Express",
2495
+ "other_name": "",
2496
+ "required_fields": []
2497
  },
2498
  {
2499
+ "slug": "kurasi",
2500
+ "name": "KURASI",
2501
+ "other_name": "",
2502
+ "required_fields": []
2503
  },
2504
  {
2505
+ "slug": "kwe-global",
2506
+ "name": "KWE Global",
2507
+ "other_name": "",
2508
+ "required_fields": []
 
 
2509
  },
2510
  {
2511
+ "slug": "kwt",
2512
+ "name": "Shenzhen Jinghuada Logistics Co., Ltd",
2513
+ "other_name": "KWT",
2514
+ "required_fields": []
 
 
2515
  },
2516
  {
2517
+ "slug": "ky-express",
2518
+ "name": "Kua Yue Express",
2519
+ "other_name": "KYE",
2520
+ "required_fields": []
2521
  },
2522
  {
2523
+ "slug": "la-poste-colissimo",
2524
+ "name": "La Poste",
2525
+ "other_name": "Coliposte",
2526
+ "required_fields": []
2527
  },
2528
  {
2529
+ "slug": "lalamove",
2530
+ "name": "Lalamove",
2531
+ "other_name": "",
2532
+ "required_fields": []
2533
  },
2534
  {
2535
+ "slug": "landmark-global",
2536
+ "name": "Landmark Global",
2537
+ "other_name": "",
2538
+ "required_fields": []
2539
  },
2540
  {
2541
+ "slug": "landmark-global-reference",
2542
+ "name": "Landmark Global Reference",
2543
+ "other_name": "",
2544
+ "required_fields": []
2545
  },
2546
  {
2547
+ "slug": "lao-post",
2548
+ "name": "Lao Post",
2549
+ "other_name": "Laos Postal Service",
2550
+ "required_fields": []
2551
  },
2552
  {
2553
+ "slug": "lasership",
2554
+ "name": "LaserShip",
2555
+ "other_name": "LaserShip",
2556
+ "required_fields": []
2557
  },
2558
  {
2559
+ "slug": "latvijas-pasts",
2560
+ "name": "Latvijas Pasts",
2561
+ "other_name": "Latvijas Pasts",
2562
+ "required_fields": []
2563
  },
2564
  {
2565
+ "slug": "leader",
2566
+ "name": "leader",
2567
+ "other_name": "立德国际物流",
2568
+ "required_fields": []
 
 
2569
  },
2570
  {
2571
+ "slug": "legion-express",
2572
+ "name": "Legion Express",
2573
+ "other_name": "",
2574
+ "required_fields": []
2575
  },
2576
  {
2577
+ "slug": "lexship",
2578
+ "name": "LexShip",
2579
+ "other_name": "",
2580
+ "required_fields": []
2581
  },
2582
  {
2583
+ "slug": "lht-express",
2584
+ "name": "LHT Express",
2585
+ "other_name": "",
2586
+ "required_fields": []
2587
  },
2588
  {
2589
+ "slug": "liefery",
2590
+ "name": "liefery",
2591
+ "other_name": "",
2592
+ "required_fields": []
2593
  },
2594
  {
2595
+ "slug": "lietuvos-pastas",
2596
+ "name": "Lietuvos Paštas",
2597
+ "other_name": "Lithuania Post, LP Express",
2598
+ "required_fields": []
2599
  },
2600
  {
2601
+ "slug": "line",
2602
+ "name": "Line Clear Express & Logistics Sdn Bhd",
2603
+ "other_name": "",
2604
+ "required_fields": []
2605
  },
2606
  {
2607
+ "slug": "linkbridge",
2608
+ "name": "Link Bridge(BeiJing)international logistics co.,ltd",
2609
+ "other_name": "联博瑞翔(北京)国际物流股份有限公司",
2610
+ "required_fields": []
2611
  },
2612
  {
2613
+ "slug": "lion-parcel",
2614
+ "name": "Lion Parcel",
2615
+ "other_name": "",
2616
+ "required_fields": []
2617
  },
2618
  {
2619
+ "slug": "livrapide",
2620
+ "name": "Livrapide",
2621
+ "other_name": "",
2622
+ "required_fields": []
2623
  },
2624
  {
2625
+ "slug": "locus-webhook",
2626
+ "name": "Locus",
2627
+ "other_name": "",
2628
+ "required_fields": []
2629
  },
2630
  {
2631
+ "slug": "logistyx-transgroup",
2632
+ "name": "Transgroup",
2633
+ "other_name": "",
2634
+ "required_fields": []
2635
  },
2636
  {
2637
+ "slug": "logwin-logistics",
2638
+ "name": "Logwin Logistics",
2639
+ "other_name": "",
2640
+ "required_fields": []
2641
  },
2642
  {
2643
+ "slug": "lonestar",
2644
+ "name": "Lone Star Overnight",
2645
+ "other_name": "",
2646
+ "required_fields": []
2647
  },
2648
  {
2649
+ "slug": "loomis-express",
2650
+ "name": "Loomis Express",
2651
+ "other_name": "",
2652
+ "required_fields": []
2653
  },
2654
  {
2655
+ "slug": "lotte",
2656
+ "name": "Lotte Global Logistics",
2657
+ "other_name": "",
2658
+ "required_fields": []
2659
  },
2660
  {
2661
+ "slug": "ltianexp",
2662
+ "name": "LTIAN EXP",
2663
+ "other_name": "乐天国际",
2664
+ "required_fields": []
2665
  },
2666
  {
2667
+ "slug": "ltl",
2668
+ "name": "LTL",
2669
+ "other_name": "",
2670
+ "required_fields": []
2671
  },
2672
  {
2673
+ "slug": "lwe-hk",
2674
+ "name": "Logistic Worldwide Express",
2675
+ "other_name": "LWE",
2676
+ "required_fields": []
2677
  },
2678
  {
2679
+ "slug": "m-xpress",
2680
+ "name": "M Xpress Sdn Bhd",
2681
+ "other_name": "",
2682
+ "required_fields": []
2683
  },
2684
  {
2685
+ "slug": "magyar-posta",
2686
+ "name": "Magyar Posta",
2687
+ "other_name": "Hungarian Post",
2688
+ "required_fields": []
2689
  },
2690
  {
2691
+ "slug": "mail-box-etc",
2692
+ "name": "Mail Boxes Etc.",
2693
+ "other_name": "",
2694
+ "required_fields": []
2695
  },
2696
  {
2697
+ "slug": "mailamericas",
2698
+ "name": "MailAmericas",
2699
+ "other_name": "",
2700
+ "required_fields": []
2701
  },
2702
  {
2703
+ "slug": "mailplus",
2704
+ "name": "MailPlus",
2705
+ "other_name": "",
2706
+ "required_fields": []
2707
  },
2708
  {
2709
+ "slug": "mailplus-jp",
2710
+ "name": "MailPlus (Japan)",
2711
+ "other_name": "",
2712
+ "required_fields": []
2713
  },
2714
  {
2715
+ "slug": "mainfreight",
2716
+ "name": "Mainfreight",
2717
+ "other_name": "",
2718
+ "required_fields": []
2719
  },
2720
  {
2721
+ "slug": "mainway",
2722
+ "name": "Mainway",
2723
+ "other_name": "",
2724
+ "required_fields": []
2725
  },
2726
  {
2727
+ "slug": "malaysia-post",
2728
+ "name": "Malaysia Post EMS / Pos Laju",
2729
+ "other_name": "Pos Ekspres, Pos Malaysia Express",
2730
+ "required_fields": []
2731
  },
2732
  {
2733
+ "slug": "malaysia-post-posdaftar",
2734
+ "name": "Malaysia Post - Registered",
2735
+ "other_name": "PosDaftar",
2736
+ "required_fields": []
2737
  },
2738
  {
2739
+ "slug": "mara-xpress",
2740
+ "name": "Mara Xpress",
2741
+ "other_name": "",
2742
+ "required_fields": []
 
 
2743
  },
2744
  {
2745
+ "slug": "matdespatch",
2746
+ "name": "Matdespatch",
2747
+ "other_name": "",
2748
+ "required_fields": []
2749
  },
2750
  {
2751
+ "slug": "matkahuolto",
2752
+ "name": "Matkahuolto",
2753
+ "other_name": "Oy Matkahuolto Ab",
2754
+ "required_fields": []
2755
  },
2756
  {
2757
+ "slug": "mazet",
2758
+ "name": "Groupe Mazet",
2759
+ "other_name": "",
2760
+ "required_fields": []
 
 
2761
  },
2762
  {
2763
+ "slug": "megasave",
2764
+ "name": "Megasave",
2765
+ "other_name": "",
2766
+ "required_fields": []
 
 
2767
  },
2768
  {
2769
+ "slug": "mexico-redpack",
2770
+ "name": "Mexico Redpack",
2771
+ "other_name": "TNT Mexico",
2772
+ "required_fields": []
 
 
2773
  },
2774
  {
2775
+ "slug": "mexico-senda-express",
2776
+ "name": "Mexico Senda Express",
2777
+ "other_name": "Mexico Senda Express",
2778
+ "required_fields": []
2779
  },
2780
  {
2781
+ "slug": "mglobal",
2782
+ "name": "PT MGLOBAL LOGISTICS INDONESIA",
2783
+ "other_name": "",
2784
+ "required_fields": []
2785
  },
2786
  {
2787
+ "slug": "midland",
2788
+ "name": "Midland",
2789
+ "other_name": "",
2790
+ "required_fields": []
2791
  },
2792
  {
2793
+ "slug": "mikropakket",
2794
+ "name": "Mikropakket",
2795
+ "other_name": "",
2796
+ "required_fields": [
2797
+ "tracking_postal_code"
2798
+ ]
2799
  },
2800
  {
2801
+ "slug": "mikropakket-be",
2802
+ "name": "Mikropakket Belgium",
2803
+ "other_name": "",
2804
+ "required_fields": [
2805
+ "tracking_postal_code"
2806
+ ]
2807
  },
2808
  {
2809
+ "slug": "milkman",
2810
+ "name": "Milkman",
2811
+ "other_name": "",
2812
+ "required_fields": []
 
 
2813
  },
2814
  {
2815
+ "slug": "misumi-cn",
2816
+ "name": "MISUMI Group Inc.",
2817
+ "other_name": "",
2818
+ "required_fields": []
2819
  },
2820
  {
2821
+ "slug": "mondialrelay",
2822
+ "name": "Mondial Relay",
2823
+ "other_name": "Mondial Relay France",
2824
+ "required_fields": [
2825
+ "tracking_postal_code"
2826
+ ]
2827
  },
2828
  {
2829
+ "slug": "mondialrelay-es",
2830
+ "name": "Mondial Relay Spain(Punto Pack)",
2831
+ "other_name": null,
2832
+ "required_fields": []
2833
  },
2834
  {
2835
+ "slug": "mondialrelay-fr",
2836
+ "name": "Mondial Relay France",
2837
+ "other_name": null,
2838
+ "required_fields": []
2839
  },
2840
  {
2841
+ "slug": "mrw-spain",
2842
+ "name": "MRW",
2843
+ "other_name": "MRW Spain",
2844
+ "required_fields": []
2845
  },
2846
  {
2847
+ "slug": "mudita",
2848
+ "name": "MUDITA",
2849
+ "other_name": "",
2850
+ "required_fields": []
2851
  },
2852
  {
2853
+ "slug": "mx-cargo",
2854
+ "name": "M&X cargo",
2855
+ "other_name": "M&X International Shipping Agency Co.,LTD",
2856
+ "required_fields": []
2857
  },
2858
  {
2859
+ "slug": "mxe",
2860
+ "name": "MXE Express",
2861
+ "other_name": "上海淼信货运代理有限公司",
2862
+ "required_fields": []
2863
  },
2864
  {
2865
+ "slug": "myhermes-uk",
2866
+ "name": "MyHermes UK",
2867
+ "other_name": "",
2868
+ "required_fields": []
2869
  },
2870
  {
2871
+ "slug": "mypostonline",
2872
+ "name": "Mypostonline",
2873
+ "other_name": "MYBOXPOST",
2874
+ "required_fields": []
2875
  },
2876
  {
2877
+ "slug": "nacex",
2878
+ "name": "NACEX",
2879
+ "other_name": "",
2880
+ "required_fields": [
2881
+ "tracking_account_number"
2882
+ ]
2883
  },
2884
  {
2885
+ "slug": "nacex-spain",
2886
+ "name": "NACEX Spain",
2887
+ "other_name": "NACEX Logista",
2888
+ "required_fields": [
2889
+ "tracking_postal_code"
2890
+ ]
2891
  },
2892
  {
2893
+ "slug": "nanjingwoyuan",
2894
+ "name": "Nanjing Woyuan",
2895
+ "other_name": "u6c83u6e90",
2896
+ "required_fields": []
2897
  },
2898
  {
2899
+ "slug": "naqel-express",
2900
+ "name": "Naqel Express",
2901
+ "other_name": "",
2902
+ "required_fields": []
 
 
2903
  },
2904
  {
2905
+ "slug": "national-sameday",
2906
+ "name": "National Sameday",
2907
+ "other_name": "",
2908
+ "required_fields": []
2909
  },
2910
  {
2911
+ "slug": "nationwide-my",
2912
+ "name": "Nationwide Express",
2913
+ "other_name": "nationwide2u",
2914
+ "required_fields": []
2915
  },
2916
  {
2917
+ "slug": "new-zealand-post",
2918
+ "name": "New Zealand Post",
2919
+ "other_name": "NZ Post",
2920
+ "required_fields": []
2921
  },
2922
  {
2923
+ "slug": "neway",
2924
+ "name": "Neway Transport",
2925
+ "other_name": "",
2926
+ "required_fields": []
2927
  },
2928
  {
2929
+ "slug": "newgistics",
2930
+ "name": "Newgistics",
2931
+ "other_name": "",
2932
+ "required_fields": []
2933
  },
2934
  {
2935
+ "slug": "newgisticsapi",
2936
+ "name": "Newgistics API",
2937
+ "other_name": "",
2938
+ "required_fields": []
2939
  },
2940
  {
2941
+ "slug": "newzealand-couriers",
2942
+ "name": "NEW ZEALAND COURIERS",
2943
+ "other_name": "",
2944
+ "required_fields": [
2945
+ "tracking_account_number"
2946
+ ]
2947
  },
2948
  {
2949
+ "slug": "nhans-solutions",
2950
+ "name": "Nhans Solutions",
2951
+ "other_name": "Nhans Courier",
2952
+ "required_fields": []
2953
  },
2954
  {
2955
+ "slug": "nightline",
2956
+ "name": "Nightline",
2957
+ "other_name": "",
2958
+ "required_fields": []
2959
  },
2960
  {
2961
+ "slug": "nim-express",
2962
+ "name": "Nim Express",
2963
+ "other_name": "Armadillio Express",
2964
+ "required_fields": []
2965
  },
2966
  {
2967
+ "slug": "ninjavan",
2968
+ "name": "Ninja Van",
2969
+ "other_name": "",
2970
+ "required_fields": []
2971
  },
2972
  {
2973
+ "slug": "ninjavan-id",
2974
+ "name": "Ninja Van Indonesia",
2975
+ "other_name": "NinjaVan Indonesia",
2976
+ "required_fields": []
2977
  },
2978
  {
2979
+ "slug": "ninjavan-my",
2980
+ "name": "Ninja Van Malaysia",
2981
+ "other_name": "NinjaVan MY",
2982
+ "required_fields": []
2983
  },
2984
  {
2985
+ "slug": "ninjavan-philippines",
2986
+ "name": "Ninja Van Philippines",
2987
+ "other_name": "",
2988
+ "required_fields": []
2989
  },
2990
  {
2991
+ "slug": "ninjavan-thai",
2992
+ "name": "Ninja Van Thailand",
2993
+ "other_name": "",
2994
+ "required_fields": []
 
 
2995
  },
2996
  {
2997
+ "slug": "ninjavan-webhook",
2998
+ "name": "Ninjavan Webhook",
2999
+ "other_name": "",
3000
+ "required_fields": []
 
 
 
3001
  },
3002
  {
3003
+ "slug": "nipost",
3004
+ "name": "NiPost",
3005
+ "other_name": "Nigerian Postal Service",
3006
+ "required_fields": []
3007
  },
3008
  {
3009
+ "slug": "norsk-global",
3010
+ "name": "Norsk Global",
3011
+ "other_name": "Norsk European Wholesale",
3012
+ "required_fields": []
3013
  },
3014
  {
3015
+ "slug": "nova-poshta",
3016
+ "name": "Nova Poshta",
3017
+ "other_name": "Новая Почта",
3018
+ "required_fields": []
3019
  },
3020
  {
3021
+ "slug": "nova-poshtaint",
3022
+ "name": "Nova Poshta (International)",
3023
+ "other_name": "Новая Почта",
3024
+ "required_fields": []
3025
  },
3026
  {
3027
+ "slug": "nowlog-api",
3028
+ "name": "Sequoialog",
3029
+ "other_name": "",
3030
+ "required_fields": []
3031
  },
3032
  {
3033
+ "slug": "nox-nachtexpress",
3034
+ "name": "Innight Express Germany GmbH (nox NachtExpress)",
3035
+ "other_name": null,
3036
+ "required_fields": []
3037
  },
3038
  {
3039
+ "slug": "nox-night-time-express",
3040
+ "name": "NOX NightTimeExpress",
3041
+ "other_name": null,
3042
+ "required_fields": []
3043
  },
3044
  {
3045
+ "slug": "ntl",
3046
+ "name": "NTL logistics",
3047
+ "other_name": "",
3048
+ "required_fields": []
3049
  },
3050
  {
3051
+ "slug": "oca-ar",
3052
+ "name": "OCA Argentina",
3053
+ "other_name": "OCA e-Pak",
3054
+ "required_fields": []
3055
  },
3056
  {
3057
+ "slug": "ocs",
3058
+ "name": "OCS ANA Group",
3059
+ "other_name": "",
3060
+ "required_fields": []
3061
  },
3062
  {
3063
+ "slug": "ocs-worldwide",
3064
+ "name": "OCS WORLDWIDE",
3065
+ "other_name": "",
3066
+ "required_fields": []
3067
  },
3068
  {
3069
+ "slug": "okayparcel",
3070
+ "name": "OkayParcel",
3071
+ "other_name": "",
3072
+ "required_fields": []
3073
  },
3074
  {
3075
+ "slug": "old-dominion",
3076
+ "name": "Old Dominion Freight Line",
3077
+ "other_name": "ODFL",
3078
+ "required_fields": []
3079
  },
3080
  {
3081
+ "slug": "omniparcel",
3082
+ "name": "Omni Parcel",
3083
+ "other_name": "Omni-Channel Logistics (Seko)",
3084
+ "required_fields": []
3085
  },
3086
  {
3087
+ "slug": "omniva",
3088
+ "name": "Omniva",
3089
+ "other_name": "",
3090
+ "required_fields": []
3091
  },
3092
  {
3093
+ "slug": "oneclick",
3094
+ "name": "One click delivery services",
3095
+ "other_name": null,
3096
+ "required_fields": []
3097
  },
3098
  {
3099
+ "slug": "oneworldexpress",
3100
+ "name": "One World Express",
3101
+ "other_name": "u6613u65f6u9039u7269u6d41",
3102
+ "required_fields": []
3103
  },
3104
  {
3105
+ "slug": "ontrac",
3106
+ "name": "OnTrac",
3107
+ "other_name": "OnTrac Shipping",
3108
+ "required_fields": []
 
 
3109
  },
3110
  {
3111
+ "slug": "opek",
3112
+ "name": "FedEx Poland Domestic",
3113
+ "other_name": "OPEK",
3114
+ "required_fields": []
3115
  },
3116
  {
3117
+ "slug": "osm-worldwide",
3118
+ "name": "OSM Worldwide",
3119
+ "other_name": "",
3120
+ "required_fields": []
3121
  },
3122
  {
3123
+ "slug": "paack-webhook",
3124
+ "name": "Paack",
3125
+ "other_name": "",
3126
+ "required_fields": []
3127
  },
3128
  {
3129
+ "slug": "packlink",
3130
+ "name": "Packlink",
3131
+ "other_name": "Packlink Spain",
3132
+ "required_fields": []
3133
  },
3134
  {
3135
+ "slug": "packs",
3136
+ "name": "Packs",
3137
+ "other_name": null,
3138
+ "required_fields": [
3139
+ "tracking_postal_code"
3140
+ ]
3141
  },
3142
  {
3143
+ "slug": "palexpress",
3144
+ "name": "PAL Express Limited",
3145
+ "other_name": "",
3146
+ "required_fields": []
3147
  },
3148
  {
3149
+ "slug": "palletways",
3150
+ "name": "Palletways",
3151
+ "other_name": "",
3152
+ "required_fields": [
3153
+ "tracking_postal_code"
3154
+ ]
3155
  },
3156
  {
3157
+ "slug": "pan-asia",
3158
+ "name": "Pan-Asia International",
3159
+ "other_name": null,
3160
+ "required_fields": []
3161
  },
3162
  {
3163
+ "slug": "pandulogistics",
3164
+ "name": "Pandu Logistics",
3165
+ "other_name": "",
3166
+ "required_fields": []
3167
  },
3168
  {
3169
+ "slug": "panther",
3170
+ "name": "Panther",
3171
+ "other_name": "Panther Group UK",
3172
+ "required_fields": []
3173
  },
3174
  {
3175
+ "slug": "panther-order-number",
3176
+ "name": "Panther Order Number",
3177
+ "other_name": "Panther Group UK",
3178
+ "required_fields": [
3179
+ "tracking_postal_code"
3180
+ ]
3181
  },
3182
  {
3183
+ "slug": "panther-reference",
3184
+ "name": "Panther Reference",
3185
+ "other_name": "Panther Group UK",
3186
+ "required_fields": [
3187
+ "tracking_account_number"
3188
+ ]
3189
  },
3190
  {
3191
+ "slug": "paper-express",
3192
+ "name": "Paper Express",
3193
+ "other_name": "",
3194
+ "required_fields": [
3195
+ "tracking_postal_code"
3196
+ ]
3197
  },
3198
  {
3199
+ "slug": "paperfly",
3200
+ "name": "Paperfly Private Limited",
3201
+ "other_name": "",
3202
+ "required_fields": []
3203
  },
3204
  {
3205
+ "slug": "paquetexpress",
3206
+ "name": "Paquetexpress",
3207
+ "other_name": "",
3208
+ "required_fields": []
3209
  },
3210
  {
3211
+ "slug": "parcel-force",
3212
+ "name": "Parcel Force",
3213
+ "other_name": "Parcelforce UK",
3214
+ "required_fields": []
3215
  },
3216
  {
3217
+ "slug": "parcel2go",
3218
+ "name": "Parcel2Go",
3219
+ "other_name": "",
3220
+ "required_fields": []
3221
  },
3222
  {
3223
+ "slug": "parcelled-in",
3224
+ "name": "Parcelled.in",
3225
+ "other_name": "Parcelled",
3226
+ "required_fields": []
3227
  },
3228
  {
3229
+ "slug": "parcelone",
3230
+ "name": "PARCEL ONE",
3231
+ "other_name": "",
3232
+ "required_fields": []
3233
  },
3234
  {
3235
+ "slug": "parcelpal-webhook",
3236
+ "name": "ParcelPal",
3237
+ "other_name": null,
3238
+ "required_fields": []
3239
  },
3240
  {
3241
+ "slug": "parcelpoint",
3242
+ "name": "ParcelPoint Pty Ltd",
3243
+ "other_name": "",
3244
+ "required_fields": [
3245
+ "tracking_key"
3246
+ ]
3247
  },
3248
  {
3249
+ "slug": "parcelpost-sg",
3250
+ "name": "Parcel Post Singapore",
3251
+ "other_name": "ParcelPost",
3252
+ "required_fields": []
3253
  },
3254
  {
3255
+ "slug": "parknparcel",
3256
+ "name": "Park N Parcel",
3257
+ "other_name": "",
3258
+ "required_fields": []
3259
  },
3260
  {
3261
+ "slug": "pfcexpress",
3262
+ "name": "PFC Express",
3263
+ "other_name": "PFCu7687u5bb6u7269u6d41",
3264
+ "required_fields": []
3265
  },
3266
  {
3267
+ "slug": "pflogistics",
3268
+ "name": "PFL",
3269
+ "other_name": null,
3270
+ "required_fields": []
3271
  },
3272
  {
3273
+ "slug": "pickup",
3274
+ "name": "Pickupp",
3275
+ "other_name": "",
3276
+ "required_fields": []
3277
  },
3278
  {
3279
+ "slug": "pickupp-mys",
3280
+ "name": "PICK UPP",
3281
+ "other_name": "",
3282
+ "required_fields": []
3283
  },
3284
  {
3285
+ "slug": "pickupp-sgp",
3286
+ "name": "PICK UPP (Singapore)",
3287
+ "other_name": "",
3288
+ "required_fields": []
3289
  },
3290
  {
3291
+ "slug": "pickupp-vnm",
3292
+ "name": "Pickupp Vietnam",
3293
+ "other_name": "",
3294
+ "required_fields": []
3295
  },
3296
  {
3297
+ "slug": "pil-logistics",
3298
+ "name": "PIL Logistics (China) Co., Ltd",
3299
+ "other_name": "",
3300
+ "required_fields": []
3301
  },
3302
  {
3303
+ "slug": "pilot-freight",
3304
+ "name": "Pilot Freight Services",
3305
+ "other_name": "",
3306
+ "required_fields": []
3307
  },
3308
  {
3309
+ "slug": "pitney-bowes",
3310
+ "name": "Pitney Bowes",
3311
+ "other_name": "",
3312
+ "required_fields": []
3313
  },
3314
  {
3315
+ "slug": "pittohio",
3316
+ "name": "PITT OHIO",
3317
+ "other_name": "",
3318
+ "required_fields": []
3319
  },
3320
  {
3321
+ "slug": "pixsell",
3322
+ "name": "PIXSELL LOGISTICS",
3323
+ "other_name": "",
3324
+ "required_fields": []
3325
  },
3326
  {
3327
+ "slug": "planzer",
3328
+ "name": "Planzer Group",
3329
+ "other_name": "",
3330
+ "required_fields": [
3331
+ "tracking_postal_code"
3332
+ ]
3333
  },
3334
  {
3335
+ "slug": "poczta-polska",
3336
+ "name": "Poczta Polska",
3337
+ "other_name": "Poland Post",
3338
+ "required_fields": []
3339
  },
3340
  {
3341
+ "slug": "pony-express",
3342
+ "name": "Pony express",
3343
+ "other_name": "",
3344
+ "required_fields": []
3345
  },
3346
  {
3347
+ "slug": "portugal-ctt",
3348
+ "name": "Portugal CTT",
3349
+ "other_name": "Correios de Portugal",
3350
+ "required_fields": []
3351
  },
3352
  {
3353
+ "slug": "portugal-seur",
3354
+ "name": "Portugal Seur",
3355
+ "other_name": "SEUR",
3356
+ "required_fields": []
3357
  },
3358
  {
3359
+ "slug": "post-serbia",
3360
+ "name": "Post Serbia",
3361
+ "other_name": "Pou0161ta Srbije",
3362
+ "required_fields": []
 
 
 
3363
  },
3364
  {
3365
+ "slug": "post-slovenia",
3366
+ "name": "Post of Slovenia",
3367
+ "other_name": "",
3368
+ "required_fields": []
3369
  },
3370
  {
3371
+ "slug": "post56",
3372
+ "name": "Post56",
3373
+ "other_name": "捷邮快递",
3374
+ "required_fields": []
3375
  },
3376
  {
3377
+ "slug": "posta-romana",
3378
+ "name": "Poșta Română",
3379
+ "other_name": "Romania Post",
3380
+ "required_fields": []
3381
  },
3382
  {
3383
+ "slug": "poste-italiane",
3384
+ "name": "Poste Italiane",
3385
+ "other_name": "Italian Post",
3386
+ "required_fields": []
3387
  },
3388
  {
3389
+ "slug": "poste-italiane-paccocelere",
3390
+ "name": "Poste Italiane Paccocelere",
3391
+ "other_name": "Italian Post EMS / Express",
3392
+ "required_fields": []
3393
  },
3394
  {
3395
+ "slug": "posten-norge",
3396
+ "name": "Posten Norge / Bring",
3397
+ "other_name": "Norway Post, Norska Posten",
3398
+ "required_fields": []
3399
  },
3400
  {
3401
+ "slug": "posti",
3402
+ "name": "Posti",
3403
+ "other_name": "Finland Post",
3404
+ "required_fields": []
3405
  },
3406
  {
3407
+ "slug": "postnl",
3408
+ "name": "PostNL Domestic",
3409
+ "other_name": "PostNL Pakketten, TNT Post Netherlands",
3410
+ "required_fields": [
3411
+ "tracking_postal_code"
3412
+ ]
3413
  },
3414
  {
3415
+ "slug": "postnl-3s",
3416
+ "name": "PostNL International 3S",
3417
+ "other_name": "TNT Post parcel service United Kingdom",
3418
+ "required_fields": [
3419
+ "tracking_destination_country",
3420
+ "tracking_postal_code"
3421
+ ]
3422
  },
3423
  {
3424
+ "slug": "postnl-international",
3425
+ "name": "PostNL International",
3426
+ "other_name": "Netherlands Post, Spring Global Mail",
3427
+ "required_fields": []
3428
  },
3429
  {
3430
+ "slug": "postnord",
3431
+ "name": "PostNord Logistics",
3432
+ "other_name": "Posten Norden",
3433
+ "required_fields": []
3434
  },
3435
  {
3436
+ "slug": "postur-is",
3437
+ "name": "Iceland Post",
3438
+ "other_name": "Postur.is, Íslandspóstur",
3439
+ "required_fields": []
3440
  },
3441
  {
3442
+ "slug": "ppbyb",
3443
+ "name": "PayPal Package",
3444
+ "other_name": "贝邮宝",
3445
+ "required_fields": []
3446
  },
3447
  {
3448
+ "slug": "primamulticipta",
3449
+ "name": "PT Prima Multi Cipta",
3450
+ "other_name": "",
3451
+ "required_fields": []
3452
  },
3453
  {
3454
+ "slug": "professional-couriers",
3455
+ "name": "Professional Couriers",
3456
+ "other_name": "TPC India",
3457
+ "required_fields": []
3458
  },
3459
  {
3460
+ "slug": "ptt-posta",
3461
+ "name": "PTT Posta",
3462
+ "other_name": "Turkish Post",
3463
+ "required_fields": []
3464
  },
3465
  {
3466
+ "slug": "purolator",
3467
+ "name": "Purolator",
3468
+ "other_name": "Purolator Freight",
3469
+ "required_fields": []
3470
  },
3471
  {
3472
+ "slug": "purolator-international",
3473
+ "name": "Purolator International",
3474
+ "other_name": "",
3475
+ "required_fields": []
3476
  },
3477
  {
3478
+ "slug": "qualitypost",
3479
+ "name": "QualityPost",
3480
+ "other_name": "",
3481
+ "required_fields": []
3482
  },
3483
  {
3484
+ "slug": "quantium",
3485
+ "name": "Quantium",
3486
+ "other_name": "u51a0u5eadu7269u6d41",
3487
+ "required_fields": []
3488
  },
3489
  {
3490
+ "slug": "qxpress",
3491
+ "name": "Qxpress",
3492
+ "other_name": "Qxpress Qoo10",
3493
+ "required_fields": []
3494
  },
3495
  {
3496
+ "slug": "raben-group",
3497
+ "name": "Raben Group",
3498
+ "other_name": "myRaben",
3499
+ "required_fields": []
3500
  },
3501
  {
3502
+ "slug": "raf",
3503
+ "name": "RAF Philippines",
3504
+ "other_name": "RAF Int'l. Forwarding",
3505
+ "required_fields": []
3506
  },
3507
  {
3508
+ "slug": "raiderex",
3509
+ "name": "RaidereX",
3510
+ "other_name": "Detrack",
3511
+ "required_fields": []
3512
  },
3513
  {
3514
+ "slug": "ramgroup-za",
3515
+ "name": "RAM",
3516
+ "other_name": "RAM Group",
3517
+ "required_fields": []
3518
  },
3519
  {
3520
+ "slug": "rcl",
3521
+ "name": "Red Carpet Logistics",
3522
+ "other_name": "",
3523
+ "required_fields": []
3524
  },
3525
  {
3526
+ "slug": "redjepakketje",
3527
+ "name": "Red je Pakketje",
3528
+ "other_name": null,
3529
+ "required_fields": []
3530
  },
3531
  {
3532
+ "slug": "redur-es",
3533
+ "name": "Redur Spain",
3534
+ "other_name": "Eurodis",
3535
+ "required_fields": []
3536
  },
3537
  {
3538
+ "slug": "relaiscolis",
3539
+ "name": "Relais Colis",
3540
+ "other_name": "",
3541
+ "required_fields": [
3542
+ "tracking_key"
3543
+ ]
3544
  },
3545
  {
3546
+ "slug": "rincos",
3547
+ "name": "Rincos",
3548
+ "other_name": "",
3549
+ "required_fields": []
 
 
3550
  },
3551
  {
3552
+ "slug": "rl-carriers",
3553
+ "name": "RL Carriers",
3554
+ "other_name": "R+L Carriers",
3555
+ "required_fields": []
3556
  },
3557
  {
3558
+ "slug": "roadbull",
3559
+ "name": "Roadbull Logistics",
3560
+ "other_name": "Roadbull Logistics Pte Ltd",
3561
+ "required_fields": []
3562
  },
3563
  {
3564
+ "slug": "roadrunner-freight",
3565
+ "name": "Roadrunner Transport Service",
3566
+ "other_name": "",
3567
+ "required_fields": []
3568
  },
3569
  {
3570
+ "slug": "rocketparcel",
3571
+ "name": "Rocket Parcel International",
3572
+ "other_name": "",
3573
+ "required_fields": []
3574
  },
3575
  {
3576
+ "slug": "royal-mail",
3577
+ "name": "Royal Mail",
3578
+ "other_name": "Royal Mail United Kingdom",
3579
+ "required_fields": []
3580
  },
3581
  {
3582
+ "slug": "rpd2man",
3583
+ "name": "RPD2man Deliveries",
3584
+ "other_name": "RPD-2man",
3585
+ "required_fields": []
3586
  },
3587
  {
3588
+ "slug": "rpx",
3589
+ "name": "RPX Indonesia",
3590
+ "other_name": "Repex Perdana International",
3591
+ "required_fields": []
3592
  },
3593
  {
3594
+ "slug": "rpxonline",
3595
+ "name": "RPX Online",
3596
+ "other_name": "Cathay Pacific",
3597
+ "required_fields": []
3598
  },
3599
  {
3600
+ "slug": "rrdonnelley",
3601
+ "name": "RRD International Logistics U.S.A",
3602
+ "other_name": "RRD",
3603
+ "required_fields": []
3604
  },
3605
  {
3606
+ "slug": "russian-post",
3607
+ "name": "Russian Post",
3608
+ "other_name": "Почта России, EMS Post RU",
3609
+ "required_fields": []
3610
  },
3611
  {
3612
+ "slug": "ruston",
3613
+ "name": "Ruston",
3614
+ "other_name": "",
3615
+ "required_fields": []
3616
  },
3617
  {
3618
+ "slug": "rzyexpress",
3619
+ "name": "RZY Express",
3620
+ "other_name": "RZYExpress",
3621
+ "required_fields": []
3622
  },
3623
  {
3624
+ "slug": "safexpress",
3625
+ "name": "Safexpress",
3626
+ "other_name": "Safexpress",
3627
+ "required_fields": []
3628
  },
3629
  {
3630
+ "slug": "sagawa",
3631
+ "name": "Sagawa",
3632
+ "other_name": "佐川急便",
3633
+ "required_fields": []
3634
  },
3635
  {
3636
+ "slug": "saia-freight",
3637
+ "name": "Saia LTL Freight",
3638
+ "other_name": "",
3639
+ "required_fields": []
3640
  },
3641
  {
3642
+ "slug": "sailpost",
3643
+ "name": "SAILPOST",
3644
+ "other_name": "",
3645
+ "required_fields": []
 
 
3646
  },
3647
  {
3648
+ "slug": "sap-express",
3649
+ "name": "SAP EXPRESS",
3650
+ "other_name": "",
3651
+ "required_fields": []
3652
  },
3653
  {
3654
+ "slug": "sapo",
3655
+ "name": "South African Post Office",
3656
+ "other_name": "South African Post Office",
3657
+ "required_fields": []
3658
  },
3659
  {
3660
+ "slug": "saudi-post",
3661
+ "name": "Saudi Post",
3662
+ "other_name": "البريد السعودي",
3663
+ "required_fields": []
3664
  },
3665
  {
3666
+ "slug": "scudex-express",
3667
+ "name": "Scudex Express",
3668
+ "other_name": "",
3669
+ "required_fields": []
3670
  },
3671
  {
3672
+ "slug": "sefl",
3673
+ "name": "Southeastern Freight Lines",
3674
+ "other_name": "",
3675
+ "required_fields": []
3676
  },
3677
  {
3678
+ "slug": "seino",
3679
+ "name": "Seino",
3680
+ "other_name": "",
3681
+ "required_fields": []
3682
  },
3683
  {
3684
+ "slug": "seko-sftp",
3685
+ "name": "SEKO Worldwide, LLC",
3686
+ "other_name": "SEKO Logistics",
3687
+ "required_fields": []
3688
  },
3689
  {
3690
+ "slug": "sekologistics",
3691
+ "name": "SEKO Logistics",
3692
+ "other_name": "SEKO",
3693
+ "required_fields": []
3694
  },
3695
  {
3696
+ "slug": "sending",
3697
+ "name": "Sending Transporte Urgente y Comunicacion, S.A.U",
3698
+ "other_name": "",
3699
+ "required_fields": []
3700
  },
3701
  {
3702
+ "slug": "sendit",
3703
+ "name": "Sendit",
3704
+ "other_name": "",
3705
+ "required_fields": []
3706
  },
3707
  {
3708
+ "slug": "sendle",
3709
+ "name": "Sendle",
3710
+ "other_name": "",
3711
+ "required_fields": []
3712
  },
3713
  {
3714
+ "slug": "sf-express",
3715
+ "name": "SF Express",
3716
+ "other_name": "順豊快遞, SF",
3717
+ "required_fields": []
3718
  },
3719
  {
3720
+ "slug": "sf-express-webhook",
3721
+ "name": "SF Express (Webhook)",
3722
+ "other_name": "顺丰速运 (丰桥路由状态推送)",
3723
+ "required_fields": []
3724
  },
3725
  {
3726
+ "slug": "sfb2c",
3727
+ "name": "S.F International",
3728
+ "other_name": "順豐國際",
3729
+ "required_fields": []
3730
  },
3731
  {
3732
+ "slug": "sfc",
3733
+ "name": "SFC",
3734
+ "other_name": "三态速递",
3735
+ "required_fields": []
3736
  },
3737
  {
3738
+ "slug": "sfcservice",
3739
+ "name": "SFC Service",
3740
+ "other_name": "u6df1u5733u4e09u6001u56fdu9645u901fu9012",
3741
+ "required_fields": []
3742
  },
3743
  {
3744
+ "slug": "sfplus-webhook",
3745
+ "name": "SF Plus",
3746
+ "other_name": "Kin Shun Information Technology Limited",
3747
+ "required_fields": []
3748
  },
3749
  {
3750
+ "slug": "ship-it-asia",
3751
+ "name": "Ship It Asia",
3752
+ "other_name": "",
3753
+ "required_fields": []
3754
  },
3755
  {
3756
+ "slug": "shippify",
3757
+ "name": "Shippify, Inc",
3758
+ "other_name": "",
3759
+ "required_fields": []
3760
  },
3761
  {
3762
+ "slug": "shippit",
3763
+ "name": "Shippit",
3764
+ "other_name": "",
3765
+ "required_fields": []
3766
  },
3767
  {
3768
+ "slug": "shiptor",
3769
+ "name": "Shiptor",
3770
+ "other_name": "",
3771
+ "required_fields": []
 
 
 
3772
  },
3773
  {
3774
+ "slug": "shopfans",
3775
+ "name": "ShopfansRU LLC",
3776
+ "other_name": "",
3777
+ "required_fields": []
3778
  },
3779
  {
3780
+ "slug": "shree-maruti",
3781
+ "name": "Shree Maruti Courier Services Pvt Ltd",
3782
+ "other_name": "",
3783
+ "required_fields": []
3784
  },
3785
  {
3786
+ "slug": "shreetirupati",
3787
+ "name": "SHREE TIRUPATI COURIER SERVICES PVT. LTD.",
3788
+ "other_name": "",
3789
+ "required_fields": []
3790
  },
3791
  {
3792
+ "slug": "sic-teliway",
3793
+ "name": "Teliway SIC Express",
3794
+ "other_name": "Prevote",
3795
+ "required_fields": []
3796
  },
3797
  {
3798
+ "slug": "simplypost",
3799
+ "name": "J & T Express Singapore",
3800
+ "other_name": "",
3801
+ "required_fields": []
 
 
3802
  },
3803
  {
3804
+ "slug": "singapore-post",
3805
+ "name": "Singapore Post",
3806
+ "other_name": "SingPost",
3807
+ "required_fields": []
3808
  },
3809
  {
3810
+ "slug": "singapore-speedpost",
3811
+ "name": "Singapore Speedpost",
3812
+ "other_name": "Singapore EMS",
3813
+ "required_fields": []
 
 
 
3814
  },
3815
  {
3816
+ "slug": "siodemka",
3817
+ "name": "Siodemka",
3818
+ "other_name": "Siodemka Kurier",
3819
+ "required_fields": []
 
 
3820
  },
3821
  {
3822
+ "slug": "sk-posta",
3823
+ "name": "Slovenská pošta, a.s.",
3824
+ "other_name": "",
3825
+ "required_fields": []
3826
  },
3827
  {
3828
+ "slug": "sky-postal",
3829
+ "name": "SkyPostal",
3830
+ "other_name": "",
3831
+ "required_fields": []
3832
  },
3833
  {
3834
+ "slug": "skybox",
3835
+ "name": "SKYBOX",
3836
+ "other_name": "",
3837
+ "required_fields": []
3838
  },
3839
  {
3840
+ "slug": "skynet",
3841
+ "name": "SkyNet Malaysia",
3842
+ "other_name": "SkyNet MY",
3843
+ "required_fields": []
3844
  },
3845
  {
3846
+ "slug": "skynet-za",
3847
+ "name": "Skynet World Wide Express South Africa",
3848
+ "other_name": "",
3849
+ "required_fields": []
3850
  },
3851
  {
3852
+ "slug": "skynetworldwide",
3853
+ "name": "SkyNet Worldwide Express",
3854
+ "other_name": "Skynetwwe",
3855
+ "required_fields": []
3856
  },
3857
  {
3858
+ "slug": "skynetworldwide-uae",
3859
+ "name": "SkyNet Worldwide Express UAE",
3860
+ "other_name": "",
3861
+ "required_fields": []
3862
  },
3863
  {
3864
+ "slug": "skynetworldwide-uk",
3865
+ "name": "Skynet Worldwide Express UK",
3866
+ "other_name": "Skynet UK",
3867
+ "required_fields": []
3868
  },
3869
  {
3870
+ "slug": "skypostal",
3871
+ "name": "Asendia HK – Premium Service (LATAM)",
3872
+ "other_name": "SkyPostal (Postrac)",
3873
+ "required_fields": []
3874
  },
3875
  {
3876
+ "slug": "smg-express",
3877
+ "name": "SMG Direct",
3878
+ "other_name": "",
3879
+ "required_fields": []
3880
  },
3881
  {
3882
+ "slug": "smooth",
3883
+ "name": "Smooth Couriers",
3884
+ "other_name": "",
3885
+ "required_fields": []
3886
  },
3887
  {
3888
+ "slug": "smsa-express",
3889
+ "name": "SMSA Express",
3890
+ "other_name": "",
3891
+ "required_fields": []
3892
  },
3893
  {
3894
+ "slug": "sonictl",
3895
+ "name": "Sonic Transportation & Logistics",
3896
+ "other_name": "",
3897
+ "required_fields": []
3898
  },
3899
  {
3900
+ "slug": "spain-correos-es",
3901
+ "name": "Correos de España",
3902
+ "other_name": "Spain Post, ChronoExpress",
3903
+ "required_fields": []
3904
  },
3905
  {
3906
+ "slug": "spanish-seur",
3907
+ "name": "Spanish Seur",
3908
+ "other_name": "SEUR",
3909
+ "required_fields": []
3910
  },
3911
  {
3912
+ "slug": "spanish-seur-api",
3913
+ "name": "Spanish Seur API",
3914
+ "other_name": "",
3915
+ "required_fields": []
3916
  },
3917
  {
3918
+ "slug": "specialisedfreight-za",
3919
+ "name": "Specialised Freight",
3920
+ "other_name": "SFS",
3921
+ "required_fields": []
3922
  },
3923
  {
3924
+ "slug": "spectran",
3925
+ "name": "Spectran",
3926
+ "other_name": null,
3927
+ "required_fields": []
3928
  },
3929
  {
3930
+ "slug": "speedcouriers-gr",
3931
+ "name": "Speed Couriers",
3932
+ "other_name": "Speed Couriers",
3933
+ "required_fields": []
3934
  },
3935
  {
3936
+ "slug": "speedee",
3937
+ "name": "Spee-Dee Delivery",
3938
+ "other_name": "",
3939
+ "required_fields": []
3940
  },
3941
  {
3942
+ "slug": "speedexcourier",
3943
+ "name": "Speedex Courier",
3944
+ "other_name": "Speedex Courier",
3945
+ "required_fields": []
3946
  },
3947
  {
3948
+ "slug": "speedy",
3949
+ "name": "Speedy",
3950
+ "other_name": "",
3951
+ "required_fields": []
3952
  },
3953
  {
3954
+ "slug": "spoton",
3955
+ "name": "SPOTON Logistics Pvt Ltd",
3956
+ "other_name": "",
3957
+ "required_fields": []
3958
  },
3959
  {
3960
+ "slug": "spring-gds",
3961
+ "name": "Spring GDS",
3962
+ "other_name": "",
3963
+ "required_fields": []
3964
  },
3965
  {
3966
+ "slug": "sprint-pack",
3967
+ "name": "SPRINT PACK",
3968
+ "other_name": "",
3969
+ "required_fields": []
3970
  },
3971
  {
3972
+ "slug": "srekorea",
3973
+ "name": "SRE Korea",
3974
+ "other_name": "SRE 배송서비스",
3975
+ "required_fields": []
3976
  },
3977
  {
3978
+ "slug": "stallionexpress",
3979
+ "name": "Stallion Express",
3980
+ "other_name": "",
3981
+ "required_fields": []
3982
  },
3983
  {
3984
+ "slug": "star-track",
3985
+ "name": "StarTrack",
3986
+ "other_name": "Star Track",
3987
+ "required_fields": []
3988
  },
3989
  {
3990
+ "slug": "star-track-courier",
3991
+ "name": "Star Track Courier",
3992
+ "other_name": "",
3993
+ "required_fields": [
3994
+ "tracking_state"
3995
+ ]
3996
  },
3997
  {
3998
+ "slug": "star-track-express",
3999
+ "name": "Star Track Express",
4000
+ "other_name": "AaE Australian air Express",
4001
+ "required_fields": []
4002
  },
4003
  {
4004
+ "slug": "starken",
4005
+ "name": "STARKEN",
4006
+ "other_name": "",
4007
+ "required_fields": []
4008
  },
4009
  {
4010
+ "slug": "sto",
4011
+ "name": "STO Express",
4012
+ "other_name": "申通快递, Shentong Express",
4013
+ "required_fields": []
 
 
4014
  },
4015
  {
4016
+ "slug": "stone3pl",
4017
+ "name": "STONE3PL",
4018
+ "other_name": null,
4019
+ "required_fields": []
 
 
4020
  },
4021
  {
4022
+ "slug": "sutton",
4023
+ "name": "Sutton Transport",
4024
+ "other_name": "",
4025
+ "required_fields": []
4026
  },
4027
  {
4028
+ "slug": "sweden-posten",
4029
+ "name": "PostNord Sweden",
4030
+ "other_name": "Sweden Post, Posten, Sweden Posten",
4031
+ "required_fields": []
4032
  },
4033
  {
4034
+ "slug": "swiss-post",
4035
+ "name": "Swiss Post",
4036
+ "other_name": "La Poste Suisse, Die Schweizerische Post, Die Post",
4037
+ "required_fields": []
4038
  },
4039
  {
4040
+ "slug": "sypost",
4041
+ "name": "Sunyou Post",
4042
+ "other_name": "",
4043
+ "required_fields": []
4044
  },
4045
  {
4046
+ "slug": "szdpex",
4047
+ "name": "DPEX China",
4048
+ "other_name": "DPEX(深圳)国际物流, Toll China",
4049
+ "required_fields": []
4050
  },
4051
  {
4052
+ "slug": "szendex",
4053
+ "name": "SZENDEX",
4054
+ "other_name": null,
4055
+ "required_fields": []
4056
  },
4057
  {
4058
+ "slug": "taiwan-post",
4059
+ "name": "Taiwan Post",
4060
+ "other_name": "Chunghwa Post, 台灣中華郵政",
4061
+ "required_fields": []
4062
  },
4063
  {
4064
+ "slug": "taqbin-hk",
4065
+ "name": "TAQBIN Hong Kong",
4066
+ "other_name": "Yamat, 雅瑪多運輸- 宅急便",
4067
+ "required_fields": []
4068
  },
4069
  {
4070
+ "slug": "taqbin-jp",
4071
+ "name": "Yamato Japan",
4072
+ "other_name": "ヤマト運輸, TAQBIN",
4073
+ "required_fields": []
4074
  },
4075
  {
4076
+ "slug": "taqbin-my",
4077
+ "name": "TAQBIN Malaysia",
4078
+ "other_name": "TAQBIN Malaysia",
4079
+ "required_fields": []
4080
  },
4081
  {
4082
+ "slug": "taqbin-sg",
4083
+ "name": "TAQBIN Singapore",
4084
+ "other_name": "Yamato Singapore",
4085
+ "required_fields": []
4086
  },
4087
  {
4088
+ "slug": "taqbin-taiwan",
4089
+ "name": "PRESIDENT TRANSNET CORP",
4090
+ "other_name": "",
4091
+ "required_fields": []
4092
  },
4093
  {
4094
+ "slug": "tarrive",
4095
+ "name": "TONDA GLOBAL",
4096
+ "other_name": "",
4097
+ "required_fields": []
4098
  },
4099
  {
4100
+ "slug": "taxydromiki",
4101
+ "name": "Geniki Taxydromiki",
4102
+ "other_name": "ΓΕΝΙΚΗ ΤΑΧΥΔΡΟΜΙΚΗ",
4103
+ "required_fields": []
4104
  },
4105
  {
4106
+ "slug": "tazmanian-freight",
4107
+ "name": "Tazmanian Freight Systems",
4108
+ "other_name": "",
4109
+ "required_fields": []
4110
  },
4111
  {
4112
+ "slug": "tck-express",
4113
+ "name": "TCK Express",
4114
+ "other_name": "",
4115
+ "required_fields": []
4116
  },
4117
  {
4118
+ "slug": "tcs",
4119
+ "name": "TCS",
4120
+ "other_name": "",
4121
+ "required_fields": []
4122
  },
4123
  {
4124
+ "slug": "tfm",
4125
+ "name": "TFM Xpress",
4126
+ "other_name": "",
4127
+ "required_fields": [
4128
+ "tracking_postal_code"
4129
+ ]
4130
  },
4131
  {
4132
+ "slug": "tforce-finalmile",
4133
+ "name": "TForce Final Mile",
4134
+ "other_name": "",
4135
+ "required_fields": []
4136
  },
4137
  {
4138
+ "slug": "tgx",
4139
+ "name": "Kerry Express Hong Kong",
4140
+ "other_name": "Top Gun Express, 精英速運, TGX",
4141
+ "required_fields": []
4142
  },
4143
  {
4144
+ "slug": "thailand-post",
4145
+ "name": "Thailand Thai Post",
4146
+ "other_name": "ไปรษณีย์ไทย",
4147
+ "required_fields": []
4148
  },
4149
  {
4150
+ "slug": "thecourierguy",
4151
+ "name": "The Courier Guy",
4152
+ "other_name": "TheCourierGuy",
4153
+ "required_fields": []
4154
  },
4155
  {
4156
+ "slug": "thedeliverygroup",
4157
+ "name": "TDG – The Delivery Group",
4158
+ "other_name": "",
4159
+ "required_fields": [
4160
+ "tracking_postal_code"
4161
+ ]
4162
  },
4163
  {
4164
+ "slug": "thenile-webhook",
4165
+ "name": "SortHub",
4166
+ "other_name": "",
4167
+ "required_fields": []
4168
  },
4169
  {
4170
+ "slug": "tiki",
4171
+ "name": "Tiki",
4172
+ "other_name": "Citra Van Titipan Kilat",
4173
+ "required_fields": []
4174
+ },
4175
+ {
4176
+ "slug": "tipsa",
4177
+ "name": "TIPSA",
4178
+ "other_name": "",
4179
+ "required_fields": []
4180
+ },
4181
+ {
4182
+ "slug": "tnt",
4183
+ "name": "TNT",
4184
+ "other_name": "TNT Express",
4185
+ "required_fields": []
4186
+ },
4187
+ {
4188
+ "slug": "tnt-au",
4189
+ "name": "TNT Australia",
4190
+ "other_name": "TNT AU",
4191
+ "required_fields": []
4192
+ },
4193
+ {
4194
+ "slug": "tnt-click",
4195
+ "name": "TNT-Click Italy",
4196
+ "other_name": "TNT Italy",
4197
+ "required_fields": []
4198
+ },
4199
+ {
4200
+ "slug": "tnt-fr",
4201
+ "name": "TNT France",
4202
+ "other_name": "TNT Express FR",
4203
+ "required_fields": []
4204
+ },
4205
+ {
4206
+ "slug": "tnt-it",
4207
+ "name": "TNT Italy",
4208
+ "other_name": "TNT Express IT",
4209
+ "required_fields": []
4210
+ },
4211
+ {
4212
+ "slug": "tnt-reference",
4213
+ "name": "TNT Reference",
4214
+ "other_name": "TNT consignment reference",
4215
+ "required_fields": []
4216
+ },
4217
+ {
4218
+ "slug": "tnt-uk",
4219
+ "name": "TNT UK",
4220
+ "other_name": "TNT United Kingdom",
4221
+ "required_fields": []
4222
+ },
4223
+ {
4224
+ "slug": "tnt-uk-reference",
4225
+ "name": "TNT UK Reference",
4226
+ "other_name": "TNT UK consignment reference",
4227
+ "required_fields": []
4228
+ },
4229
+ {
4230
+ "slug": "tntpost-it",
4231
+ "name": "Nexive (TNT Post Italy)",
4232
+ "other_name": "Postnl TNT",
4233
+ "required_fields": []
4234
+ },
4235
+ {
4236
+ "slug": "toll-ipec",
4237
+ "name": "Toll IPEC",
4238
+ "other_name": "Toll Express",
4239
+ "required_fields": []
4240
+ },
4241
+ {
4242
+ "slug": "toll-nz",
4243
+ "name": "Toll New Zealand",
4244
+ "other_name": "",
4245
+ "required_fields": []
4246
+ },
4247
+ {
4248
+ "slug": "toll-priority",
4249
+ "name": "Toll Priority",
4250
+ "other_name": "Toll Group, Toll Priority",
4251
+ "required_fields": []
4252
+ },
4253
+ {
4254
+ "slug": "tolos",
4255
+ "name": "Tolos",
4256
+ "other_name": "",
4257
+ "required_fields": []
4258
+ },
4259
+ {
4260
+ "slug": "tophatterexpress",
4261
+ "name": "Tophatter Express",
4262
+ "other_name": "",
4263
+ "required_fields": []
4264
+ },
4265
+ {
4266
+ "slug": "topyou",
4267
+ "name": "TopYou",
4268
+ "other_name": null,
4269
+ "required_fields": []
4270
+ },
4271
+ {
4272
+ "slug": "total-express",
4273
+ "name": "Total Express",
4274
+ "other_name": "",
4275
+ "required_fields": [
4276
+ "tracking_account_number",
4277
+ "tracking_key"
4278
+ ]
4279
+ },
4280
+ {
4281
+ "slug": "tourline",
4282
+ "name": "tourline",
4283
+ "other_name": "ctt",
4284
+ "required_fields": []
4285
+ },
4286
+ {
4287
+ "slug": "tourline-reference",
4288
+ "name": "Tourline Express",
4289
+ "other_name": "",
4290
+ "required_fields": []
4291
+ },
4292
+ {
4293
+ "slug": "trakpak",
4294
+ "name": "TrakPak",
4295
+ "other_name": "bpost international P2P Mailing Trak Pak",
4296
+ "required_fields": []
4297
+ },
4298
+ {
4299
+ "slug": "trans-kargo",
4300
+ "name": "Trans Kargo Internasional",
4301
+ "other_name": "",
4302
+ "required_fields": []
4303
+ },
4304
+ {
4305
+ "slug": "transmission-nl",
4306
+ "name": "TransMission",
4307
+ "other_name": "mijnzending",
4308
+ "required_fields": [
4309
+ "tracking_postal_code"
4310
+ ]
4311
+ },
4312
+ {
4313
+ "slug": "trunkrs-webhook",
4314
+ "name": "Trunkrs",
4315
+ "other_name": "",
4316
+ "required_fields": []
4317
+ },
4318
+ {
4319
+ "slug": "tuffnells",
4320
+ "name": "Tuffnells Parcels Express",
4321
+ "other_name": "",
4322
+ "required_fields": [
4323
+ "tracking_account_number",
4324
+ "tracking_postal_code"
4325
+ ]
4326
+ },
4327
+ {
4328
+ "slug": "tuffnells-reference",
4329
+ "name": "Tuffnells Parcels Express- Reference",
4330
+ "other_name": "",
4331
+ "required_fields": [
4332
+ "tracking_postal_code"
4333
+ ]
4334
+ },
4335
+ {
4336
+ "slug": "ubi-logistics",
4337
+ "name": "UBI Smart Parcel",
4338
+ "other_name": "",
4339
+ "required_fields": []
4340
+ },
4341
+ {
4342
+ "slug": "uds",
4343
+ "name": "United Delivery Service, Ltd",
4344
+ "other_name": "",
4345
+ "required_fields": []
4346
+ },
4347
+ {
4348
+ "slug": "uk-mail",
4349
+ "name": "UK Mail",
4350
+ "other_name": "Business Post Group",
4351
+ "required_fields": []
4352
+ },
4353
+ {
4354
+ "slug": "ukrposhta",
4355
+ "name": "UkrPoshta",
4356
+ "other_name": "Укрпошта",
4357
+ "required_fields": []
4358
+ },
4359
+ {
4360
+ "slug": "up-express",
4361
+ "name": "UP-express",
4362
+ "other_name": "",
4363
+ "required_fields": []
4364
+ },
4365
+ {
4366
+ "slug": "ups",
4367
+ "name": "UPS",
4368
+ "other_name": "United Parcel Service",
4369
+ "required_fields": []
4370
+ },
4371
+ {
4372
+ "slug": "ups-freight",
4373
+ "name": "UPS Freight",
4374
+ "other_name": "UPS LTL and Truckload",
4375
+ "required_fields": []
4376
+ },
4377
+ {
4378
+ "slug": "ups-mi",
4379
+ "name": "UPS Mail Innovations",
4380
+ "other_name": "UPS MI",
4381
+ "required_fields": []
4382
+ },
4383
+ {
4384
+ "slug": "urgent-cargus",
4385
+ "name": "Urgent Cargus",
4386
+ "other_name": "",
4387
+ "required_fields": []
4388
+ },
4389
+ {
4390
+ "slug": "usf-reddaway",
4391
+ "name": "USF Reddaway",
4392
+ "other_name": "",
4393
+ "required_fields": []
4394
+ },
4395
+ {
4396
+ "slug": "uship",
4397
+ "name": "uShip",
4398
+ "other_name": "",
4399
+ "required_fields": []
4400
+ },
4401
+ {
4402
+ "slug": "usps",
4403
+ "name": "USPS",
4404
+ "other_name": "United States Postal Service",
4405
+ "required_fields": []
4406
+ },
4407
+ {
4408
+ "slug": "usps-webhook",
4409
+ "name": "USPS Informed Visibility - Webhook",
4410
+ "other_name": "USPS IV",
4411
+ "required_fields": []
4412
+ },
4413
+ {
4414
+ "slug": "via-express",
4415
+ "name": "Viaxpress",
4416
+ "other_name": "",
4417
+ "required_fields": []
4418
+ },
4419
+ {
4420
+ "slug": "viettelpost",
4421
+ "name": "ViettelPost",
4422
+ "other_name": "Bưu chính Viettel",
4423
+ "required_fields": []
4424
+ },
4425
+ {
4426
+ "slug": "virtransport",
4427
+ "name": "VIR Transport",
4428
+ "other_name": "",
4429
+ "required_fields": [
4430
+ "tracking_account_number"
4431
+ ]
4432
+ },
4433
+ {
4434
+ "slug": "viwo",
4435
+ "name": "VIWO IoT",
4436
+ "other_name": "",
4437
+ "required_fields": []
4438
+ },
4439
+ {
4440
+ "slug": "vnpost",
4441
+ "name": "Vietnam Post",
4442
+ "other_name": "VNPost",
4443
+ "required_fields": []
4444
+ },
4445
+ {
4446
+ "slug": "vnpost-ems",
4447
+ "name": "Vietnam Post EMS",
4448
+ "other_name": "VNPost EMS",
4449
+ "required_fields": []
4450
+ },
4451
+ {
4452
+ "slug": "wahana",
4453
+ "name": "Wahana",
4454
+ "other_name": "Wahana Indonesia",
4455
+ "required_fields": []
4456
+ },
4457
+ {
4458
+ "slug": "wanbexpress",
4459
+ "name": "WanbExpress",
4460
+ "other_name": "",
4461
+ "required_fields": []
4462
+ },
4463
+ {
4464
+ "slug": "watkins-shepard",
4465
+ "name": "Watkins Shepard",
4466
+ "other_name": "",
4467
+ "required_fields": []
4468
+ },
4469
+ {
4470
+ "slug": "weaship",
4471
+ "name": "Weaship",
4472
+ "other_name": "",
4473
+ "required_fields": []
4474
+ },
4475
+ {
4476
+ "slug": "wedo",
4477
+ "name": "WeDo Logistics",
4478
+ "other_name": "運德物流",
4479
+ "required_fields": []
4480
+ },
4481
+ {
4482
+ "slug": "wepost",
4483
+ "name": "WePost Logistics",
4484
+ "other_name": "",
4485
+ "required_fields": []
4486
+ },
4487
+ {
4488
+ "slug": "westbank-courier",
4489
+ "name": "West Bank Courier",
4490
+ "other_name": "",
4491
+ "required_fields": []
4492
+ },
4493
+ {
4494
+ "slug": "whistl",
4495
+ "name": "Whistl",
4496
+ "other_name": "",
4497
+ "required_fields": []
4498
+ },
4499
+ {
4500
+ "slug": "wise-express",
4501
+ "name": "Wise Express",
4502
+ "other_name": "u4e07u8272u901fu9012",
4503
+ "required_fields": []
4504
+ },
4505
+ {
4506
+ "slug": "wiseloads",
4507
+ "name": "Wiseloads",
4508
+ "other_name": "",
4509
+ "required_fields": []
4510
+ },
4511
+ {
4512
+ "slug": "wishpost",
4513
+ "name": "WishPost",
4514
+ "other_name": "Wish",
4515
+ "required_fields": []
4516
+ },
4517
+ {
4518
+ "slug": "wizmo",
4519
+ "name": "Wizmo",
4520
+ "other_name": "",
4521
+ "required_fields": []
4522
+ },
4523
+ {
4524
+ "slug": "wmg",
4525
+ "name": "WMG Delivery",
4526
+ "other_name": "World Marketing Group Pte Ltd",
4527
+ "required_fields": []
4528
+ },
4529
+ {
4530
+ "slug": "wndirect",
4531
+ "name": "wnDirect",
4532
+ "other_name": "",
4533
+ "required_fields": []
4534
+ },
4535
+ {
4536
+ "slug": "xdp-uk",
4537
+ "name": "XDP Express",
4538
+ "other_name": "XDP UK",
4539
+ "required_fields": [
4540
+ "tracking_postal_code"
4541
+ ]
4542
+ },
4543
+ {
4544
+ "slug": "xdp-uk-reference",
4545
+ "name": "XDP Express Reference",
4546
+ "other_name": "XDP UK",
4547
+ "required_fields": [
4548
+ "tracking_postal_code"
4549
+ ]
4550
+ },
4551
+ {
4552
+ "slug": "xend",
4553
+ "name": "Xend Express",
4554
+ "other_name": "Xend Business Solutions",
4555
+ "required_fields": []
4556
+ },
4557
+ {
4558
+ "slug": "xl-express",
4559
+ "name": "XL Express",
4560
+ "other_name": "",
4561
+ "required_fields": []
4562
+ },
4563
+ {
4564
+ "slug": "xpedigo",
4565
+ "name": "Xpedigo",
4566
+ "other_name": "",
4567
+ "required_fields": []
4568
+ },
4569
+ {
4570
+ "slug": "xpert-delivery",
4571
+ "name": "Xpert Delivery",
4572
+ "other_name": "",
4573
+ "required_fields": []
4574
+ },
4575
+ {
4576
+ "slug": "xpo-logistics",
4577
+ "name": "XPO logistics",
4578
+ "other_name": "",
4579
+ "required_fields": []
4580
+ },
4581
+ {
4582
+ "slug": "xpost",
4583
+ "name": "Xpost.ph",
4584
+ "other_name": "",
4585
+ "required_fields": []
4586
+ },
4587
+ {
4588
+ "slug": "xpressbees",
4589
+ "name": "XpressBees",
4590
+ "other_name": "XpressBees logistics",
4591
+ "required_fields": []
4592
+ },
4593
+ {
4594
+ "slug": "xq-express",
4595
+ "name": "XQ Express",
4596
+ "other_name": "u661fu4e7eu7269u6d41",
4597
+ "required_fields": []
4598
+ },
4599
+ {
4600
+ "slug": "yakit",
4601
+ "name": "Yakit",
4602
+ "other_name": "",
4603
+ "required_fields": []
4604
+ },
4605
+ {
4606
+ "slug": "yamato-hk",
4607
+ "name": "Yamato Hong Kong Shipments",
4608
+ "other_name": null,
4609
+ "required_fields": []
4610
+ },
4611
+ {
4612
+ "slug": "yanwen",
4613
+ "name": "Yanwen",
4614
+ "other_name": "燕文物流",
4615
+ "required_fields": []
4616
+ },
4617
+ {
4618
+ "slug": "ydh-express",
4619
+ "name": "YDH express",
4620
+ "other_name": null,
4621
+ "required_fields": []
4622
+ },
4623
+ {
4624
+ "slug": "yodel",
4625
+ "name": "Yodel Domestic",
4626
+ "other_name": "Home Delivery Network Limited (HDNL)",
4627
+ "required_fields": []
4628
+ },
4629
+ {
4630
+ "slug": "yodel-international",
4631
+ "name": "Yodel International",
4632
+ "other_name": "Home Delivery Network, HDNL",
4633
+ "required_fields": []
4634
+ },
4635
+ {
4636
+ "slug": "yrc",
4637
+ "name": "YRC",
4638
+ "other_name": "YRC Freight",
4639
+ "required_fields": []
4640
+ },
4641
+ {
4642
+ "slug": "yto",
4643
+ "name": "YTO Express",
4644
+ "other_name": "u5706u901au901fu9012",
4645
+ "required_fields": []
4646
+ },
4647
+ {
4648
+ "slug": "yundaex",
4649
+ "name": "Yunda Express",
4650
+ "other_name": "韵达快递",
4651
+ "required_fields": []
4652
+ },
4653
+ {
4654
+ "slug": "yunexpress",
4655
+ "name": "Yun Express",
4656
+ "other_name": "云途物流",
4657
+ "required_fields": []
4658
+ },
4659
+ {
4660
+ "slug": "yurtici-kargo",
4661
+ "name": "Yurtici Kargo",
4662
+ "other_name": "",
4663
+ "required_fields": []
4664
+ },
4665
+ {
4666
+ "slug": "yycom",
4667
+ "name": "HUAHANG EXPRESS",
4668
+ "other_name": "华航吉运",
4669
+ "required_fields": []
4670
+ },
4671
+ {
4672
+ "slug": "zajil-express",
4673
+ "name": "Zajil Express Company",
4674
+ "other_name": "",
4675
+ "required_fields": []
4676
+ },
4677
+ {
4678
+ "slug": "zeleris",
4679
+ "name": "Zeleris",
4680
+ "other_name": "",
4681
+ "required_fields": []
4682
+ },
4683
+ {
4684
+ "slug": "zepto-express",
4685
+ "name": "ZeptoExpress",
4686
+ "other_name": "",
4687
+ "required_fields": []
4688
+ },
4689
+ {
4690
+ "slug": "ziingfinalmile",
4691
+ "name": "Ziing Final Mile Inc",
4692
+ "other_name": null,
4693
+ "required_fields": []
4694
+ },
4695
+ {
4696
+ "slug": "zinc",
4697
+ "name": "Zinc",
4698
+ "other_name": "",
4699
+ "required_fields": []
4700
+ },
4701
+ {
4702
+ "slug": "zjs-express",
4703
+ "name": "ZJS International",
4704
+ "other_name": "宅急送快運",
4705
+ "required_fields": []
4706
+ },
4707
+ {
4708
+ "slug": "zto-express",
4709
+ "name": "ZTO Express",
4710
+ "other_name": "",
4711
+ "required_fields": []
4712
+ },
4713
+ {
4714
+ "slug": "zyllem",
4715
+ "name": "Zyllem",
4716
+ "other_name": "RocketUncle",
4717
+ "required_fields": []
4718
  }
4719
  ];
4720
  return data;
class-aftership-api.php CHANGED
@@ -150,7 +150,7 @@ class AfterShip_API
150
  include_once('api/class-aftership-api-server.php');
151
  include_once('api/interface-aftership-api-handler.php');
152
  include_once('api/class-aftership-api-json-handler.php');
153
- include_once('api/class-aftership-api-v2-json-handler.php');
154
 
155
  // authentication
156
  include_once('api/class-aftership-api-authentication.php');
@@ -160,7 +160,7 @@ class AfterShip_API
160
 
161
  // self api
162
  include_once('api/class-aftership-api-orders.php');
163
- include_once('api/class-aftership-api-v2-orders.php');
164
 
165
  }
166
 
@@ -176,7 +176,7 @@ class AfterShip_API
176
  $api_classes = apply_filters('aftership_api_classes',
177
  array(
178
  'AfterShip_API_Orders',
179
- 'AfterShip_API_V2_Orders',
180
  )
181
  );
182
 
150
  include_once('api/class-aftership-api-server.php');
151
  include_once('api/interface-aftership-api-handler.php');
152
  include_once('api/class-aftership-api-json-handler.php');
153
+ include_once('api/class-aftership-api-common-json-handler.php');
154
 
155
  // authentication
156
  include_once('api/class-aftership-api-authentication.php');
160
 
161
  // self api
162
  include_once('api/class-aftership-api-orders.php');
163
+ include_once('api/class-aftership-api-v3-orders.php');
164
 
165
  }
166
 
176
  $api_classes = apply_filters('aftership_api_classes',
177
  array(
178
  'AfterShip_API_Orders',
179
+ 'AfterShip_API_V3_Orders',
180
  )
181
  );
182
 
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: 5.2.1
7
- Stable tag: 1.9.26
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -97,6 +97,12 @@ You'll find the FAQ on [AfterShip.com](https://aftership.uservoice.com/knowledge
97
 
98
  == Changelog ==
99
 
 
 
 
 
 
 
100
  = 1.9.26 =
101
  * Don't import any data to AfterShip tracking custom_fields
102
 
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: 5.2.1
7
+ Stable tag: 1.10.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
97
 
98
  == Changelog ==
99
 
100
+ = 1.10.0 =
101
+ * Add v3/orders API endpoint
102
+
103
+ = 1.9.27 =
104
+ * Refresh supported couriers list
105
+
106
  = 1.9.26 =
107
  * Don't import any data to AfterShip tracking custom_fields
108