Channable transporters API

The transporters API from Channable — 3 operation(s) for transporters.

OpenAPI Specification

channable-transporters-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Channable order connection order_attachments transporters API
  description: "# Introduction\n\nWelcome to the Channable API __v1__.\n\nThis version of the Channable API allows you to:\n\n- Access orders\n- Manage order shipments\n- Update the stock of an offer on all marketplaces\n- Access returns\n\n### Details\n\n|    Key             |       Value\n-------------     | -----------\nApi version       | `v1`, `v2`\nProtocol          | `HTTPS`\nHostname          | `api.channable.com`\nCommon Path v1    | `/v1/companies/:company_id/projects/:project_id`\nCommon Path v2    | `/v2/companies/:company_id/projects/:project_id`\n\n\nThe <em>Common Path</em> is shared by all endpoints except the transporters endpoints in this version of our API. Note that you have to replace <code>:company_id</code> and <code>:project_id</code> with valid values. All endpoints using v2 will state so in their names, and should use the <em>common path v2</em>. All other endpoints are v1 endpoints and should use <em>Common Path v1</em>.\n\n## Taxonomy\n\n\n|    Term         | Description\n-------------     | -----------\n`Platform`        | A webshop platform, such as WooComerce, Lightspeed, etc.\n`Marketplace`     | A place where you can sell your products, such as Amazon, Bol, eBay, etc. Sometimes referred to as _channel_.\n`Order`           | A purchase of any products made by a client.\n`Offer`           | A selling proposal made by a seller over any class of products. It includes price, stock and other seller-dependent values.\n\n\n## Rate Limiting\n\nThe Channable API has a rate limiting policy to which you must comply.<br>\nIt is defined on a per-company basis, meaning that generating new API tokens will not circumvent our rate-limiting.\n\n|    Frequency             | Burst\n-------------              | -----------\nMax 4 requests per second  | Burst of 200 requests\n\n**Note**: We use the [Leaky Bucket algorithm](https://en.wikipedia.org/wiki/Leaky_bucket) for rate-limiting.\n\n## Getting started\n\n\nTo get started you need to:\n\n1. Find the project ids you are interested in\n1. Find your Channable company id\n1. Generate an **API token** for your company\n\n**Note**: Information about the supported channels can be found in our [help center](https://helpcenter.channable.com/hc/en-us/articles/360011094300-For-which-marketplaces-does-Channable-support-an-order-connection-integration-).\n\n### 1. Find your project ids\n\nTo find the project ids you are interested in:\n\n1. Log in to the <a target=\"\\\\_blank\" href=\"https://app.channable.com\">Channable app</a>\n2. Select a project\n3. Open the project `Settings`\n4. Copy the _Project id_ value\n\n\n### 2. Generate an API Token for your company\n\nTo both find your Channable `company_id` and to generate a new **API token** for your company, go to [app.channable.com](https://app.channable.com) and sign in.\n\nOn the main page navigate to company settings then channabke API.\nFrom here you can see your company id, as well as generate your API token.\n\n<img src='https://lh3.googleusercontent.com/d/1yUAdfXLRryVV9i0ce0mJpOX3c7z97HSD=w1000' />\n\n**Notes**:\n\n- Only owners of companies are able to generate an API Token.\n- Channable does not store your tokens. Please store them securely.\n- In case you lose or leak your token, generate a new one. The previously generated tokens can be revoked by you or will expire after 1 year.\n- Two API tokens can be valid at any time, allowing you to seamlessly change to a new token, if needed.\n\n### 3. Using the API Token\n\nYou must include your API token in every request you make to Channable.<br/>\nThe token should be included in the headers of the request: `Authorization: Bearer your_api_token`\n\n<aside class=\"notice\">\nYou must replace <code>your_api_token</code> with your API token.\n</aside>\n\nAfter generating your API token you are ready to try out the endpoints and build your integration\nusing the Channable Sandbox.\n\n**How to include the token in your requests:**\n\n```shell\n# Headers method: Authorization: Bearer\ncurl \"api_endpoint_here\"\n  -H \"Authorization: Bearer your_api_token\"\n```\n\n\n### Common error codes and their meanings\n\nThe Channable API uses the following error codes:\n\nCode | Meaning | Reason\n---------- | ------- | -------\n400 | Bad Request | The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing)\n401 | Unauthorized | You are using an invalid or already revoked API token.\n403 | Forbidden | You are not allowed to access the resources your request targets.\n404 | Not Found | The targeted resources could not be found.\n405 | Method Not Allowed | You tried to access an endpoint with an invalid HTTP method.\n406 | Not Acceptable | You requested a format that isn't json.\n409 | Conflict | Your request could not be completed due to a conflict with the current state of the target resource.\n422 | Unprocessable Entity | We could understand the content type of the request entity, but we are unable to process the contained instructions.\n429 | Too Many Requests | You have sent too many requests in a given amount of time, thus exceeding our rate-limiting policy. Please try again later.\n500 | Internal Server Error | We had a problem with our server. Please try again later.\n503 | Service Unavailable | We are temporarily offline for maintenance. Please try again later.\n\n\n## Sandbox Testing\n\nThe Channable API sandbox lets you test your order integration with the Channable API in a safe\nenvironment without sending requests to the marketplaces you want to connect to. All data is mocked\nbut the structure of the data and API calls needed to manage your orders are the same no matter\nwhich marketplace you end up connecting with.\n\n\n### Setup\n\nTo set up a test environment with the Channable Sandbox you must first make a connection with the\nSandbox. This can be done in the same way as all other connections within Channable by going to\n\"Company settings\" -> \"Connections\" and clicking on \"+ Add new connection\".\n\n<img src='https://lh3.googleusercontent.com/d/1iBA33tS5JmjdJEVDuS0ks5j9MJEewJMg=w1000' />\n\nSelect \"Channable Sandbox\", give the connection a label and click on the blue \"Create\" button.\nNo further information is needed.\n\nOnce you have made a connection, navigate to the project you want to use and click on\n\"Setup\" -> \"Setup orders\" > \"+ Setup orders\".\n\n<img src='https://lh3.googleusercontent.com/d/1zjpfcCbbU84GD45qMn3wrI3WFMNk438D=w1000' />\n\nFrom here make an order connection between the \"Channable API\" and the \"Channable Sandbox\" and\nactivate the order connection. You are now ready to start testing.\n\n<img src='https://lh3.googleusercontent.com/d/1piCcRzylFAy9uZf6vpjdukozC9-mgV_q=w1000' />\n\n### Orders\n\nTo create a test order, navigate to \"Setup\" -> \"Orders\" -> \"Settings\" of the Channable Sandbox\norder connection.\n\n<img src='https://lh3.googleusercontent.com/d/11wBOEB55t6_Y934xM3N50JtOmSbJfxGW=w1000' />\n\nFrom here click on the gear in the top right and \"Send test order\".\n\n<img src='https://lh3.googleusercontent.com/d/1f1tn9uooKz1uy0uq9xvfcMpREn5zKDVW=w1000' />\n\nIn the popup fill in an item id and click the blue \"Send test order\" button. A test order has now\nbeen created, and you can use all request methods described in \"Orders\" to interact with it. If you\nneed special test cases, most data in the test order can be provided by you in the popup when you\nclick on \"Send test order\".\n\n\n### Shipments/Cancellations\n\nOnce one or more testorders have been created, use the request methods described in \"Shipment\nupdate\" and \"Cancellation update\" under \"Orders\" above to mark an order as \"shipped\" and to give it\ntrack & trace information or to mark the order as \"cancelled\".\n\n\n### Offers\n\nTo test sending offer updates, that is updating the stock value on all marketplaces that you have\nan order connection to, you can use the request methods described in \"Offers\" above. You do not need\nto have created a test order to test this as you can update the stock value of any product in your\nstore, also products that you have not received an order for through Channable.\n\n\n### Returns\n\nReturns come from the marketplaces you will connect to. In order to test this, navigate to\n\"Setup\" -> \"Setup orders\" -> \"Settings\" of the Channable Sandbox order connection. \n\n<img src='https://lh3.googleusercontent.com/d/11wBOEB55t6_Y934xM3N50JtOmSbJfxGW=w1000' />\n\nFrom here click on the gear in the top right and \"Send test return\".\n\n<img src='https://lh3.googleusercontent.com/d/1Xdbdn329jneJqwiqxMPXV4d_nFrAyb1H=w1000' />\n\nIn the popup fill in a Channable order id and click the blue \"Send test return\" button. A test\nreturn has now been created for the order id you filled in. You can now use all request methods\ndescribed in \"Returns\" to handle the return.\n\n\n### When you are done testing\n\nOnce you are satisfied with your Channable API setup and want to go live, contact our\n<a target=\"\\\\_blank\" href=\"https://www.channable.com/company/contact/\">support department</a>\nand they will help you setup the order connections.\n"
  version: v1
  x-logo:
    url: https://www.channable.com/_next/image?url=https%3A%2F%2Fmedia.graphassets.com%2FcntRnbAcSrCmS1wLTWrb&w=256&q=75
tags:
- name: transporters
paths:
  /v1/transporters/all:
    get:
      tags:
      - transporters
      summary: All Transporters
      description: "Returns the code and label of all Channable transporters.\n\nYou should always use one of these standardized transporter codes when submitting an order\nshipment. If your transporter is not supported already, please contact our <a target=\"\\_blank\" href=\"https://www.channable.com/company/contact/\">support department</a>\nso we can start supporting it.\n\n<details><summary>Click here to see a table of all transporters</summary>\n\n|Transporter code|Transporter label|\n|--|--|\n|007EX|007EX\n|2EBOX|2ebox\n|2GO|2GO\n|360_LION_EXPRESS|360 Lion Express\n|3JMS_Logistics|3JMS Logistics\n|4M-Logistic|4 M\n|4PX|4PX\n|4PX_BPOST_RU|4PX Bpost to Russia\n|4PX_CHINA|4PX China\n|4PX_ESPOST_EU|4PX Espost EU\n|4PX_EXPRESS|4PX Express\n|4PX_EXPRESS_LTD|4PX Express Ltd\n|4PX_GLOBAL_EXPRESS|4PX Global Express\n|4PX_GLSEU_LARGE|4PX GLS EU Large\n|4PX_GLSEU_SMALL|4PX GLS EU Small\n|4PX_PAQ24|4PX Correos PAQ24\n|4PX_POSTLINK_ECONOMY2_ORDINARY_MAIL_LI|4PX PostLink Economy2 Ordinary Mail Li\n|4PX_POSTLINK_ECONOMY2_REGISTERED_MAIL_LI|4PX PostLink Economy2 Registered Mail Li\n|4PX_POSTLINK_ECONOMY_LARGE_LETTER_ORDINARY_MAIL_LI|4PX PostLink Economy large letter Ordinary Mail Li\n|4PX_POSTLINK_ECONOMY_REGISTERED_MAIL_LI|4PX PostLink Economy Registered Mail Li\n|4PX_POSTLINK_ECONOMY_REGISTERED_MAIL_NOLI|4PX PostLink Economy Registered Mail NOLi\n|4PX_POSTLINK_ECONOMY_SRM_REGISTERED_MAIL_LI|4PX PostLink Economy SRM Registered Mail Li\n|4PX_POSTLINK_PRIORITY_REGISTERED_MAIL_LI|4PX PostLink priority Registered Mail Li\n|4PX_POSTLINK_PRIORITY_REGISTERED_MAIL_NOLI|4PX PostLink priority Registered Mail NOLi\n|4PX_POSTLINK_STANDARD2_REGISTERED_MAIL_LI|4PX PostLink Standard2 Registered Mail Li\n|4PX_POSTLINK_STANDARD_LARGE_LETTER_ORDINARY_MAIL_LI|PX PostLink Standard large letter Ordinary Mail Li\n|4PX_POSTLINK_STANDARD_ORDINARY_MAIL_LI|4PX PostLink Standard Ordinary Mail Li\n|4PX_POSTLINK_STANDARD_REGISTERED_MAIL_LI|4PX PostLink Standard Registered Mail Li\n|4PX_POSTLINK_STANDARD_REGISTERED_MAIL_NOLI|4PX PostLink Standard Registered Mail NOLi\n|4PX_POSTPY|4PX Postpy\n|4PX_SDA|4PX SDA\n|4PX_SEUR24|4PX SEUR (24 Hours Delivery)\n|4PX_SEUREU|4PX SEUR EU\n|4PX_TR72_PACKET|4PX TR72-Packet\n|4_SQUARE_LOGISTICS|4 Square Logistics\n|4-72_ENTREGANDO|4-72 Entregando\n|7_SENDERS|7 Senders\n|17POSTSERVICE|17 Post Service\n|17TRACK|17TRACK\n|99_MINUTOS|99 minutos\n|A0GO|Hier Logistic Group S. de R.L. de C.V.\n|A0_NL|AO eigen vervoer\n|A1|A1\n|AAA_COOPER|AAA Cooper\n|ABCUSTOM|AB Custom\n|ABF|ABF Freight\n|ABX_EXPRESS|ABX Express\n|ACE|Ace\n|ACE_FREIGHT_LTD|ACE FREIGHT LTD\n|ACOMMERCE|aCommerce\n|ACSCOURIER|ACS Courier\n|ACSWORLDWIDE|ACS Worldwide Express\n|ACTIVE_LOGISTICS|Active Logistics\n|ADER|Ader\n|ADER_CHIQ|Ader CHiQ\n|ADICIONAL|Adicional Logistics\n|ADREXO|Adrexo\n|ADRIATIC|Adriatic\n|ADSONE|ADSOne\n|AEROFLASH|Mexico AeroFlash\n|AERONET|Aeronet\n|AEROPOST|AeroPost\n|AERSURE|Aersure\n|AFL_FEDEX|AFL/Fedex\n|AFTERSHIP|Aftership\n|AFTERSHIP_MAINWAY|Aftership Mainway\n|AG_LOGISTICS|AG Logistics\n|AGEDISS|Agediss\n|AGILITY|Agility\n|AIDAL|Aidal PLC\n|AIR21|AIR21\n|AIR_CANADA|Air Canada\n|AIR_ROAD|Air road\n|AIRBORNE|Airborne Express\n|AIRMEE|Airmee\n|AIRPAK_EXPRESS|Airpak Express\n|AIRSPEED|Airspeed International Corporati\n|AIT|AIT Worldwide Logistics\n|ALERO|Alero\n|ALFA_TRANSPORTES|Alfa transportes\n|ALFATREX|AlfaTrex\n|ALIANCA|Alianca\n|ALLE_KURIER|Allekurier\n|ALLIED_EXPRESS|Allied Express\n|ALLIED_EXPRESS_FTP|Allied Express (FTP)\n|ALLJOY|ALLJOY\n|ALLROAD|Allroad Logistics\n|ALLV|ALLIED VAN LINES\n|ALPHAFAST|alphaFAST\n|ALWAYS_EXPRESS|Always Express\n|AMATI|Amati\n|AMAZON|Amazon\n|AMAZON_LOGISTICS|Amazon Logistics\n|AMAZON_LOGISTICS_DE_(SWISHIP)|Amazon Logistics DE (Swiship)\n|AMAZON_SHIPPING|Amazon Shipping\n|AMAZON_SHIPPING_ONE_DAY_TRACKED|Amazon Shipping One Day Tracked\n|AMAZON_SHIPPING_STANDARD_TRACKED|Amazon Shipping Standard Tracked\n|AMBRO|Ambro Express\n|AMERICAN_GLOBAL_LOGISTICS|American Global Logistics\n|AMM_SPEDITION|AMM Spedition\n|AMPM|AMPM\n|AMWST|AMWST\n|AM_TRUCKING|AM Trucking\n|ANDES_EXPRESS|Andes Express\n|ANDREANI|Grupo logistico Andreani\n|ANJUN|Anjun\n|ANPOST|An Post\n|ANSERX|ANSERX\n|ANSERX_LOGISTICS|Anserx Logistics\n|ANTARIA|Antaria\n|ANTC|AMINO TRANSPORT\n|ANTRON|Antron Express\n|AO_SERVICE|AO Service\n|APC|APC Postal Logistics\n|APC_OVERNIGHT|APC Overnight\n|APC_OVERNIGHT_CON_NUM|APC Overnight Consignment Number\n|APC_OVERNIGHT_NEXT_DAY_DELIVERY|APC Overnight Next Day Delivery\n|APG|APG eCommerce Solutions Ltd.\n|APRISA_EXPRESS|Aprisa Express\n|AQUILINE|Aquiline\n|ARAMEX|Aramex\n|ARAS|Aras Kargo\n|ARASIA|Arasia\n|ARCESE|Arcese\n|ARCO|Arco\n|ARCO_SPEDIZIONI|Arco Spedizioni\n|ARCO_SPEDIZIONI_EXPRESS|Arco Spedizioni Express\n|ARFW|AMERICAN FREIGHTWAYS\n|ARK_LOGISTICS|ARK Logistics\n|ARMSTRONG_LOGISTICS|Armstrong Logistics\n|ARROW_XL|Arrow XL\n|ARROW_XL_DEDICATED|Arrow XL Dedicated\n|ARROW_XL_LITE|Arrow XL Lite\n|ARROW_XL_PLATINUM|Arrow XL Platinum\n|ARROW_XL_STANDARD|Arrow XL Standard\n|ART_BI|ART-BI\n|ARVATO|Arvato\n|ASCENDIA|Ascendia\n|ASENDIA|Asendia\n|ASIGNA|Asigna\n|AS_MAX|AS Max\n|ASM|ASM\n|ASSOCIATED_AIR_SERVICES|Associated Air Services\n|ATS|ATS\n|AUPOST_CHINA|AuPost China\n|AURLANE_CARRIER|Aurlane Carrier\n|AUSTRALIA_POST|Australia Post\n|AUSTRALIA_POST_ARTICLE|Australia Post Article\n|AUSTRALIA_POST_CONSIGMENT|Australia Post Consigment\n|AUSTRALIA_POST_SFTP|Australia Post Sftp\n|AUSTRALIAN_AIR_EXPRESS|Australian Air Express\n|AUSTRIA_POST|Austria Post\n|AUSTRIA_POST_BRIEF_INTERNATIONAL|Austria Post Brief International\n|AUSTRIA_POST_BRIEF_INTERNATIONAL_EINSCHREIBEN|Austria Post Brief International Einschreiben\n|AUSTRIA_POST_BRIEF_INTERNATIONAL_PLUS|Austria Post Brief International Plus\n|AUSTRIA_POST_BRIEF_INTERNATIONAL_PLUS_EINSCHREIBEN|Austria Post Brief International Plus Einschrieben\n|AUSTRIA_POST_BRIEF_M|Austria Post Brief M\n|AUSTRIA_POST_BRIEF_M_EINSCHREIBEN|Austria Post Brief M Einschreiben\n|AUSTRIA_POST_BRIEF_S|Austria Post Brief S\n|AUSTRIA_POST_BRIEF_S_EINSCHREIBEN|Austria Post Brief S Einschreiben\n|AUSTRIA_POST_COMBI_FREIGHT_INTERNATIONAL|Austria Post Combi-Freight International\n|AUSTRIA_POST_COMBI_FREIGHT_OESTERREICH|Austria Post Combi-Freight Oesterreich\n|AUSTRIA_POST_EASY_RETURN_SOLUTION|Austria Post Easy Return Solution\n|AUSTRIA_POST_EXPRESS|Austria Post Express\n|AUSTRIA_POST_EXPRESS_INTERNATIONAL|Austria Post Express International\n|AUSTRIA_POST_EXPRESS_PAKETMARKE|Austria Post Express Paketmarke\n|AUSTRIA_POST_KLEINPAKET_OESTERREICH|Austria Post Kleinpaket Oesterreich\n|AUSTRIA_POST_NEXT_DAY_FRESH|Austria Post Next Day Fresh\n|AUSTRIA_POST_PAECKCHEN_M|Austria Post Paeckchen M\n|AUSTRIA_POST_PAECKCHEN_S|Austria Post Paeckchen S\n|AUSTRIA_POST_PAKET_INTERNATIONAL|Austria Post Paket International\n|AUSTRIA_POST_PAKET_OESTERREICH|Austria Post Paket Oesterreich\n|AUSTRIA_POST_PAKET_PREMIUM_INTERNATIONAL|Austria Post Paket Premium International\n|AUSTRIA_POST_PAKET_PREMIUM_OESTERREICH|Austria Post Paket Premium Oesterreich\n|AUSTRIA_POST_PAKETMARKE_STANDARD|Austria Post Paketmarke Standard\n|AUSTRIA_POST_PREMIUM_LIGHT_OESTERREICH|Austria Post Premium Light Oesterreich\n|AUSTRIA_POST_PREMIUM_SELECT_OESTERREICH|Austria Post Premium Select Oesterreich\n|AUSTRIAN_POST|Austrian Post\n|AUSTRIAN_POST_EXPRESS|Austrian Post Express\n|AUSTRIAN_POST_REGISTERED|Austrian Post (Registered)\n|AUSWIDE|AusWide\n|AUTORADIO|AutoRadio\n|AUTRE|Autre\n|AVRT|Averitt Express\n|AXLE_HIRE|AxleHire\n|AYAF|AAFES PRIVATE FLEET\n|AZUL_CARGO|Azul cargo\n|A_DUIE_PYLE|A Duie Pyle\n|B&H_WORLDWIDE|B&H Worldwide\n|B2C|B2C\n|B2C_EUROPE|B2C Europe\n|BALAJI_SHIPPING|Balaji Shipping\n|BAR|Bar Israël\n|BARQ_EXP|Barq\n|BARTOLINI|BRT Bartolini\n|BASCIK|Bascik\n|BAUER_EXPRESS|Bauer Express\n|BAXG|BAX GLOBAL\n|BCCHD|BCCHD\n|BEELIV|Beeliv\n|BEENTJES|Beentjes\n|BEJOT|Bejot\n|BEJOT_LOGISTICS|Bejot Logistics\n|BELPOST|Belpost\n|BERT_FR|Bert Transport\n|BESSELING|Besseling\n|BESSON|Besson\n|BEST_BITES|Best bites\n|BEST_EXPRESS|BEST Express\n|BEST_WAY_PARCEL|Best Way Parcel\n|BETTER_TRUCKS|Better Trucks\n|BEX|BEX\n|BH_POSTA|JP BH Pošta\n|BIRDSYSTEM|BirdSystem\n|BIZ_COURIER|Biz Courier\n|BJS|BJS\n|BJS_CHOICE_OF_DAY_DELIVERY|BJS Choice-of-day delivery\n|BJS_NEXT_DAY_DELIVERY|BJS Next day delivery\n|BKFB|Bulk FR8 (Liquid Bulk)\n|BKNS|BKNS\n|BLANCACONDAL|Blanca Condal\n|BLOJ|Bridge Logistics\n|BLUEBONE_IMPORTS_LTD|BLUEBONE IMPORTS LTD\n|BLUECARE|Bluecare\n|BLUEDART|BlueDart\n|BLUE_EXPRESS|BlueExpress\n|BLUE_PACKAGE|Blue Package\n|BLUESKY|Bluesky\n|BLUESTAR|Blue Star\n|BMV|Groupe BMV\n|BMWEKTOR|BMWektor\n|BNAF|BAX GLOBAL (air)\n|BNEED|Bneed\n|BOLL_LOGISTIK|Boll Logistik\n|BOND|Bond\n|BONDS_COURIERS|Bonds Couriers\n|BONNARD|Bonnard\n|BOOKURIER|Bookurier\n|BORDER_EXPRESS|Border Express\n|BOSANCO_LTD|Bosanco Ltd\n|BOULANGER|Boulanger delivery - France\n|BOXBERRY|Boxberry\n|BOXC|BoxC\n|BOXMOTIONS|Boxmotions\n|BOX_AT_HOME|Box at Home\n|BOYACA|Boyacá\n|BPOST|Bpost\n|BPOST_API|Bpost API\n|BPOST_BPACK_24H_PRO|Bpost bpack 24h Pro\n|BPOST_INTERNATIONAL|Bpost international\n|BPOST_LANDMARK_BPOST|Bpost - Landmark Bpost\n|BPOST_LETTER|Bpost letter post\n|BPS|BPS\n|BRAS_EXPRESS|Brasexpress\n|BRAZIL_CORREIOS|Brazil Correios\n|BRENGER|Brenger\n|BRIEFPOST|Briefpost\n|BRIEFPOST_ZONDER|Briefpost zonder tracking\n|BRIGHTSTAR|Brighstar\n|BRING|Bring\n|BRINGER|Bringer Parcel Xpress\n|BRINKS|Brinks\n|BRINKS_TRANSPORT|Brinks Transport\n|BROUWER_TRANSPORT|Brouwer Transport en Logistiek B\n|BRT|Bartolini\n|BRTID|BRT id collo cliente\n|BRTRIFMIT|BRT sender reference\n|BRTSPED|BRT numero di spedizione\n|BRT_ALTRO|Bartolini Altro\n|BRT_EUEX|BRT EUEX Italie\n|BRT_PARCEL_ID|BRT Parcel ID Italie\n|BTEY|BT EXPRESS FREIGHT SYSTEMS\n|BTW|BTW\n|BUDBEE|Budbee\n|BULGARIAN_POST|Bulgarian Posts\n|BURSPED|Bursped\n|BURSPED_SPEDITIONS|Bursped Speditions\n|BUSINESS_POST|BusinessPost\n|BUSLOG|Buslog\n|BUYLOGIC|Buylogic\n|CAE_DELIVERS|CAE Delivers\n|CAINIAO|Cainiao Standard Shipping\n|CAINIAO_WH|Cainiao Warehouse Standard\n|CAINIAO_WH_EXPRESS|Cainiao Warehouse Express\n|CAMBODIA_POST|Cambodia Post\n|CAMION_TRANSPORT|Camiontransport\n|CAMPOSCADILHE|CC Campos e Cadilhe\n|CANADA_POST|Canada Post\n|CANADA_POST_EXPEDITED_PARCEL|Canada Post Expedited Parcel\n|CANADA_POST_REGULAR_PARCEL|Canada Post Regular Parcel\n|CANPAR|CanPar Courier\n|CAPITAL|Capital Transport\n|CARGO|Cargo\n|CARGOBOARD|Cargoboard\n|CARGOLINE|Cargoline\n|CARGOMATIC|Cargomatic\n|CARGUS|Cargus\n|CARIBOU|Caribou\n|CARGO_EXPRESS|Cargo Express\n|CARGO_GRISCHA|Cargo Grischa\n|CARGO_INTERNATIONAL|Cargo International\n|CARRANO|Carrano Transport\n|CARRIERS|Carriers\n|CARRYALL|Carryall\n|CARRYFLAP|Carry-Flap Co.:Ltd.\n|CASTLE_PARCELS|CastleParcels\n|CAXTON_TRANSPORT|Caxton Transport\n|CAYCO|CAYCO\n|CBL|CBL\n|CBL_API|CBL API\n|CBL_CONCERTADO|CBL Concertado\n|CBL_CONVENCIONAL|CBL Convencional\n|CBL_FLUJO_TENSO|CBL Flujo tenso\n|CBL_LOGISTICA|CBL Logistica\n|CBL_PREFERENTE|CBL Preferente\n|CBNP|CARBONITE LOGISTICS\n|CCHEZVOUS|C Chez Vous\n|CTS|CTS Group\n|CCT|CCT\n|CCV|CCV\n|CDEK|CDEK\n|CDEK_TR|CDEK TR\n|CDL_DELIVERS|CDL Last Mile\n|CDNK|Celadon\n|CELERITAS|Celeritas\n|CELLO_SQUARE|Cello Square\n|CENF|Central Freight Lines\n|CENTURY_LOGISTICS|Century logistics\n|CESF|Continental Expedited Services, Inc.\n|CESKA_POSTA|Ceska Posta\n|CEVA|CEVA Logistics\n|CEVA_TRACKING|CEVA Package\n|CFL_LOGISTICS|CFL Logistics\n|CGS_EXPRESS|CGS Express\n|CGSQ|Carolina Logistics Inc\n|CHAMPION_LOGISTICS|Champion Logistics\n|CHARVIN|Charvin\n|CHHD|DPD HD PT\n|CHILEXPRESS|Chilexpress\n|CHINA_EMS|China EMS\n|CHINA_POST|China Post\n|CHINA_POST_AIRMAIL|China Post Airmail\n|CHINA_POST_AIRMAIL_REGISTERED|China Post Airmail Registered\n|CHINA_POST_EMS|China Post EMS\n|CHINA_POST_E_COURIER|China Post e-Courier\n|CHINA_POST_E_COURIER_PACKET|China Post e-Courier Packet\n|CHINA_POST_E_PACKET|China Post e-Packet\n|CHINA_SHIPPING|China Shipping\n|CHITA|CHITA\n|CHIT_CHATS|Chit Chats\n|CHKA|Chermak Cartage, LLC\n|CHRONOFRESH|Chronofresh\n|CHRONOPOST|Chronopost\n|CHRONOPOST_CHRONO_13|Chronopost Chrono 13\n|CHRONOPOST_CHRONO_18|Chronopost Chrono 18\n|CHRONOPOST_CHRONO_CLASSIC|Chronopost Chrono Classic\n|CHRONOPOST_CHRONO_EXPRESS|Chronopost Chrono Express\n|CHRONOPOST_CHRONO_INTL|Chronopost INTL\n|CHRONOPOST_INTERNATIONAL|Chronopost International\n|CHRONOPOST_SHOP2SHOP|Chronopost Shop To Shop\n|CHRONO_EXPRESS|Chrono Express\n|CHRONO_RELAY|Chrono Relay\n|CHRP|CHEEMA TRANSPORT INC\n|CHSD|DPD Fulfillment\n|CHUKOU1|Chukou1\n|CHUNGHWA_POST|Chunghwa Post\n|CH_ROBINSON|C.H. Robinson Worldwide: Inc.\n|CH_ROBINSON_FREIGHT_SERVICES_EU|CH Robinson Freight Services - EU\n|CIBLEX|Ciblex\n|CIMC|CUSHING TRANSPORTATION,\n|CIRRO_PARCEL|Cirro Parcel\n|CITELIV|Citéliv\n|CITIPOST|CitiPost\n|CITO|Cito\n|CITYLINK|Citylink\n|CITYSPRINT_UK_LTD|CitySprint UK LTD\n|CIVIC|Civic\n|CJ_CENTURY|CJ Century\n|CJ_GLS|CJ GLS\n|CJ_LOGISTICS|CJ Logistics\n|CJ_PACKET|CJ Packet\n|CJRF|CJR Trucking, Inc.\n|CJRQ|Cheeseman Transport\n|CKOC|Clark Oil Company\n|CKPQ|CLARK TRANSPORTATION, INC.\n|CKUKOU1_LOGISTICS|Chukou1 Logistics\n|CLARKE_TRANSPORT|Clarke Transport\n|CLEVY_LINKS|Clevy Links\n|CLICK_AND_COLLECT|Click and Collect\n|CLICK_AND_QUICK|Click & Quick\n|CLOGISTICS|CLogistics\n|CLOSER_LOGISTICS|Closer Logistics\n|CLOUDWISH_ASIA|Cloudwish Asia\n|CL_E_LOGISTICS|CL E-Logistics Solutions Limited\n|CMACGM|CMA CGM\n|CMCP|CAMIONNAGE CP\n|CND_EXPRESS|CND Express\n|CNE_EXPRESS|CNE Express\n|CNPC|Carolina Transportation Inc\n|CNWANGTONG|cnwangtong\n|COBLEYS|Cobleys\n|COGEPRES|Cogepres\n|COLIECO|Colieco\n|COLIPOSTE|Coliposte\n|COLIPOSTE_INTERNATIONAL|Coliposte International\n|COLISSIMO|Colissimo\n|COLISSIMO_ACCESS|Colissimo Access\n|COLISSIMO_EXPERT|Colissimo Expert\n|COLISSIMO_EXPERT_INTERNATIONAL|Colissimo Expert International\n|COLISSIMO_LIVRAISON_DOMICILE_AVEC_SIGNATURE|Colissimo Livraison a domicile avec signature\n|COLISSIMO_LIVRAISON_DOMICILE_SANS_SIGNATURE|Colissimo Livraison a domicile sans signature\n|COLISSIMO_LIVRAISON_EN_POINT_RELAIS|Colissimo Livraison en point relais\n|COLISSIMO_RECOMMANDE|Colissimo Recommandé\n|COLISWEB|Colisweb\n|COLIS_PRIVE|Colis Prive\n|COLIS_PRIVE_NEXT|Colis prive Next\n|COLIS_PRIVE_TRACE|Colis prive Trace\n|COLLECTCO|CollectCo\n|COLLECTPLUS|CollectPlus\n|COLLIVERY|MDS Collivery Pty (Ltd)\n|COMETTECH|CometTech\n|COMPUTER_UNIVERSE|Computeruniverse\n|CONNECTED|Connected\n|CONTINENTAL|Continental\n|CONWAY|Con-way Freight\n|COORDINADORA|Coordinadora\n|COPA_COURIER|Copa Airlines Courier\n|COPE|Cope Sensitive Freight\n|CORNILLEAU|Cornilleau\n|CORPORATE_COURIERS_WEBHOOK|Corporate Couriers\n|CORREIOS|Correios\n|CORREOS|Correos\n|CORREOS_CORREO_ORDINARIO|Correos Correo Ordinario\n|CORREOS_DE_MEXICO|Correos de Mexico\n|CORREOS_EXPRESS|Correos Express\n|CORREOS_EXPRESS_API|Correos Express API\n|CORREOS_EXPRESS_BALEARES_EXP|Correos Express Baleares Exp\n|CORREOS_EXPRESS_CANARIAS_AERO|Correos Express CanariasAero\n|CORREOS_EXPRESS_CANARIAS_EXP|Correos Express Canarias Exp\n|CORREOS_EXPRESS_CANARIAS_MARITIMO|Correos Express CanariasMaritimo\n|CORREOS_EXPRESS_E_PAQ|Correos Express ePaq\n|CORREOS_EXPRESS_EQUI_PAQ_24|Correos Express EquiPaq 24\n|CORREOS_EXPRESS_PAQ_10|Correos Express Paq10\n|CORREOS_EXPRESS_PAQ_14|Correos Express Paq14\n|CORREOS_EXPRESS_PAQ_24|Correos Express Paq24\n|CORREOS_EXPRESS_PAQ_EMPRESA|Correos Express PaqEmpresa\n|CORREOS_MAIL_PLUS|Correos Mail Plus\n|CORREOS_PAQ|Correos Paquetería\n|CORREOS_PAQ_ESTANDAR|Correos Paq Estandar\n|CORREOS_PAQ_LIGHT|Correos Paq Light\n|CORREOS_PAQ_PREMIUM|Correos Paq Premium\n|CORREOS_PAQ_RETORNO|Correos Paq Retorno\n|CORREOS_PAQ_RETORNO_PREMIUM|Correos Paq Retorno Premium\n|CORREOS_PAQ_TODAY|Correos Paq Today\n|COSTMETICS_NOW|Cosmetics Now\n|COSU|China Ocean Shipping Lines\n|COTO|Country Transport\n|COURANT_PLUS|Courant Plus\n|COURIER|Delivery appointment\n|COURIERPLUS|Courier Plus\n|COURIERPOST|CourierPost\n|COURIERSPLEASE|CouriersPlease\n|COURIER_ACS|ACSCourier\n|COURIER_CENTER|CourierCenter\n|COURIER_HAL|Hal Courier\n|COURIER_ICS|ICS Courier\n|COURIER_IT|Courier IT\n|COURRIER|Courrier\n|COURRIER_SUIVI|Courrier Suivi\n|CPACKET|cPacket\n|CPC_LOGISTICS|CPC Logistics\n|CPGP|Container Port Group\n|CROATIAN_POST|Croatian Post\n|CROSHOT|Croshot\n|CSOMAG_PIAC|Csomag Piac\n|CSXT|CSX TRANSPORTATION\n|CTC_EXPRESS|CTC Express\n|CTHD|CTT Fulfillment\n|CTII|CENTRAL TRANSPORT\n|CTSD|CTT Fulfillment C&C\n|CTT|CTT\n|CTT_EXPRESS|CTT Express\n|CUBYN|Cubyn\n|CUCKOO_EXPRESS|Cuckoo Express\n|CUSTOMS_GERMAN_DEFERMENT_ACCOUNT|Customs - German deferment account Bundeskasse Trier\n|CUSTOMS_IRISH_DEFERMENT_ACCOUNT|Customs - Irish Deferment Account\n|CWAS|Cowan systems, LLC\n|CWCE|CON-WAY CENTRAL EXPRESS\n|CWIM|CON-WAY INTERMODAL\n|CWSE|CON-WAY SOUTHERN EXPRESS\n|CWWE|CON-WAY WESTERN EXPRESS\n|CYCLOON|Cycloon Fietskoeriers\n|CYPRUS_POST|Cyprus Post\n|CZECH_POST|Czech Post\n|C_LOG|C-Log\n|C_LOG_P30|C-Log P30\n|D4A|Decathlon Assurances\n|DAC|DAC\n|DACHSER|Dachser\n|DACHSER_SPEDITION|DACHSER Spedition\n|DACHSER_TARGO_FIX|DACHSER Targo fix\n|DACHSER_TARGO_FLEX|DACHSER Targo flex\n|DACHSER_TARGO_ON_SITE|DACHSER Targo on site\n|DACHSER_TARGO_ON_SITE_PLUS|DACHSER Targo on site plus\n|DACHSER_TARGO_ON_SITE_PREMIUM|DACHSER Targo on site premium\n|DACHSER_TARGO_SPEED|DACHSER Targo speed\n|DAI_POST|DAI Post\n|DAJIN|Shanghai Aqrum Chemical Logistic\n|DANNY_TRANS|Danny Trans\n|DANSKE_FRAGT|Danske Fragtmænd\n|DAO365|DAO365\n|DAO_DISTRIBUTION|DAO Distribution\n|DARTY|Darty\n|DAWN_WING|Dawn Wing\n|DAY_AND_ROSS|Day & Ross\n|DAY_AND_ROSS_GROUND|Day & Ross Ground\n|DAYTONA|Daytona\n|DAYTON_FREIGHT|Dayton Freight\n|DBA_EXPRESS|DBA Express\n|DBSCHENKER|DB Schenker\n|DBSCHENKER_DEU|DB Schenker DEU\n|DBSCHENKER_FRETLINK|DB Schenker Fretlink\n|DBSCHENKER_IMPORT|DB Schenker Import\n|DCB_LOGISTICS|DCB Logistics\n|DDH|DDH\n|DD_EXPRESS|DD Express Courier\n|DECATHLON_SERVICE_MONTAGE|Decathlon Service Montage à domicile\n|DECOEXSA|Decoexsa\n|DEF|DEF\n|DEL|Delivtoo\n|DEFITRANS|Defitrans\n|DELAMODE|Delamode\n|DELCART|Delcart\n|DELCOM|Délcom\n|DELHIVERY|Delhivery\n|DELIVER_IT|Deliver it\n|DELIVERYONTIME|DELIVERYONTIME LOGISTICS PVT LTD\n|DELIVERY_AGENCE_CHAIN|Delivery Agence Chain\n|DELIVERY_FURNITURE_EU|Delivery Furniture EU\n|DELNEXT|Delnext\n|DELTEC_COURIER|Deltec Courier\n|DEMANDSHIP|DemandShip\n|DENNISONS|Dennisons\n|DER_COURIER|Der Courier\n|DESCARGA_DIGITAL|Descarga Digital\n|DESCARTES|Innovel\n|DESIGNER_TRANSPORT|Designer Transport\n|DESTINY|Destiny Transportation\n|DETRACK|Detrack\n|DEUTSCHE_POST|Deutsche Post\n|DEXI|DEX-I\n|DFDS|DSV OCEAN TRANSPORT A/S\n|DGG_TRANSPORT|DGG transport\n|DGS|DGS\n|DHL|DHL\n|DHL_2_MH|DHL 2 MH\n|DHL_ACTIVE_TRACING|DHL Active Tracing\n|DHL_DEUTSCHE_POST|DHL Deutsche Post\n|DHL_DEUTSCHE_POST_FTP|Deutsche Post DHL (FTP)\n|DHL_ECCOMMERCE_US|DHL Eccommerce - US\n|DHL_ECOMMERCE|DHL eCommerce\n|DHL_ECOMMERCE_ASIA|DHL Ecommerce Asia\n|DHL_ECOMMERCE_ASIA_API|DHL eCommerce Asia (API)\n|DHL_ECOMMERCE_INTERNATIONAL_DIRECT_EXPEDITED|DHL Ecommerce Parcel International Direct Expedited\n|DHL_ECOMMERCE_INTERNATIONAL_DIRECT_SEMI|DHL Ecommerce Parcel International Direct Semi\n|DHL_ECOMMERCE_INTERNATIONAL_DIRECT_STANDARD|DHL Ecommerce Parcel International Direct Standard\n|DHL_ECOMMERCE_INTERNATIONAL_ECONOMY|DHL Ecommerce Packet International Economy\n|DHL_ECOMMERCE_INTERNATIONAL_PLUS|DHL Ecommerce Packet Plus International\n|DHL_ECOMMERCE_INTERNATIONAL_STANDARD|DHL Ecommerce Packet International Standard\n|DHL_EKB|DHL EKB\n|DHL_EUROPAKET|DHL Euro Paket\n|DHL_EXPRESS|DHL Express\n|DHL_FOR_YOU|DHL For You\n|DHL_FREIGHT|DHL Freight\n|DHL_FREIGHT_AUFTRAGSNR|DHL Freight (Auftragsnr.)\n|DHL_FREIGHT_NETWORK_PALLET|DHL Freight Network / DHL Freight Pallet\n|DHL_GLOBAL_FORWARDING|DHL Global Forwarding\n|DHL_GLOBAL_MAIL|DHL Global Mail\n|DHL_HOME_DELIVERY|DHL Home Delivery\n|DHL_HONG_KONG|DHL Hong Kong\n|DHL_KARGO|DHL Kargo\n|DHL_PAKET|DHL Paket\n|DHL_PAKET_INTERNATIONAL|DHL Paket International\n|DHL_PARCEL|DHL Parcel\n|DHL_PIECE_ID|DHL Express (Piece ID)\n|DHL_PRIO|DHL Prio\n|DHL_REF|DHl (Reference number)\n|DHL_SAME_DAY|DHL Same Day\n|DHL_SUPPLY_CHAIN|DHL Supply Chain\n|DHL_WARENPOST|DHL Warenpost\n|DIESCHWEIZERISCHEPOST|Die Schweizerische Post\n|DIMERCO|Dimerco Express Group\n|DIRECTALOG|Directalog\n|DIRECTLOG|Directlog\n|DIRECT_FREIGHT_EXPRESS|Direct Freight Express\n|DIRECT_LINK|Direct Link\n|DISAR|DISAR\n|DISTRICLOS|Districlos\n|DKL|De Klok Logistics\n|DLRT|Dans l'R du Temps\n|DMLI|Diamond Logistics\n|DMM_NETWORK|DMM Network\n|DMSMATRIX|DMSMATrix\n|DNJ_EXPRESS|DNJ Express\n|DOLR|DOT-LINE TRANSPORTATION\n|DOORA|Doora Logistics\n|DOORDASH|DoorDash\n|DOTZOT|Dotzot\n|DPD|DPD\n|DPD_EXPRESS|DPD Express\n|DPD_EXPRESSPAK_NEXT_DAY|DPD ExpressPak Next Day\n|DPD_EXPRESSPAK_SATURDAY|DPD ExpressPak Saturday\n|DPD_HOME|DPD Home\n|DPD_LOCAL|DPD Local\n|DPD_PARCEL_NEXT_DAY|DPD Parcel Next Day\n|DPD_PARCEL_SATURDAY|DPD Parcel Saturday\n|DPD_PREDICT|DPD Predict\n|DPD_PRIO|DPD Prio\n|DPE|DPE\n|DPEX|DPEX\n|DPEX_CHINA|DPEX China\n|DPE_EXPRESS|DPE Express\n|DPX_THAILAND|DPX Thailand\n|DRAGON_STAR|Dragon Star\n|DRAGONFLY|Dragonfly\n|DSC|DSC\n|DSV|DSV\n|DSVF|DSV-1Man\n|DSVT|DSV Solutions Ltd\n|DSV_DPD|DSV dpd\n|DSV_SPEDITION|DSV Spedition\n|DTDC|DTDC\n|DTL|DTL\n|DTS|DTS\n|DUCROS|Ducros\n|DUPONT_BEDU|Dupont Bedu\n|DUTCHNED|DutchNed\n|DX|DX\n|DX_B2B|DX (B2B)\n|DX_DELIVERY|DXdelivery\n|DX_FREIGHT|DX Freight\n|DX_FREIGHT_DX_COURIER|DX Freight DX Courier\n|DX_FREIGHT_DX_SECURE|DX Freight DX Secure\n|DX_SFTP|DX (SFTP)\n|DYLT|Daylight Transport LLC\n|DYNALOGIC|Dynalogic\n|DYNAMIC_EXPRESS|Dynamic Express\n|DYNAMIC_LOGISTICS|Dynamic Logistics\n|EARLY_BIRD|Early Bird Delivery\n|EASY_MAIL|Easy Mail\n|ECARGO|Ecargo\n|ECE|ECE\n|ECHO|Echo\n|ECMS|ECMS International Logistics Co.\n|ECONT|Econt\n|ECOSCOOTING|Ecoscooting\n|ECOURIER|eCourier\n|ECOUTIER|eCoutier\n|ECOM_EXPRESS|Ecom Express\n|ECOTIME|Ecotime\n|EDN|EDN\n|EFEX|eFEx (E-Commerce Fulfillment & E\n|EFM_LOGISTICS|EFM Logistics\n|EFS|EFS (E-commerce Fulfillment Serv)\n|EGLV|Evergreen\n|EGO|E-go\n|EIGEN_VERVOER|Eigen Vervoer\n|EINSA|Einsa\n|EINSA_SOURCING|Einsa Sourcing\n|EKART|Ekart\n|ELIANPOST|Yilian (Elian) Supply Chain\n|ELOGISTICA|ELogistica\n|ELOI|Ease Logistics\n|ELTA|ELTA Hellenic Post\n|ELTA_COURIER|ELTA Courier\n|EL_MOSCA|El Mosca\n|EMAIL|Email\n|EMIRATES_POST|Emirates Post\n|EMONS|Emons\n|EMPS_EXPRESS|EMPS Express\n|EMS|Ems post\n|ENDEAVOUR_DELIVERY|Endeavour Delivery\n|ENDOPACK|Endopack\n|ENERGO|Energo\n|ENGL_MAYER|Englmayer\n|ENIC|EMPIRE NATIONAL INC\n|ENSENDA|Ensenda\n|ENVIALIA|Envialia\n|ENVIALIA_24|Envialia 24\n|ENVIALIA_72|Envialia 72\n|ENVIO|Envio Logistics\n|EPARCEL|Eparcel\n|EPBOX|EP-Box\n|EPGTRACK|EPGTrack\n|EPOST|Epost Israël\n|EQUICK|Equick\n|ERCHIGA|Erchiga\n|ERMAGAN|Ermagan\n|ERSAL_ASYAD|Ersal Asyad\n|ESHIP|Eship\n|ESHIPPING_GLOBAL|Eshipping Global\n|ESTAFETA|Estafeta\n|ESTES|Estes\n|ETOMARS|Etomars\n|ETOTAL|eTotal Solution Limited\n|ETRACK|eTrack\n|EUB|EUB\n|EUROCOMMERCE|Eurocommerce\n|EURODESIGN_FRANCE_PRO|Eurodesign France Pro\n|EURODIS|EURODIS\n|EUROMATIC|Euromatic\n|EURO_SEVEN_SA|EURO-SEVEN SA\n|EU_FLEET_SOLUTIONS|EU Fleet Solutions\n|EU_WAYFAIR_DELIVERY_NETWORK|EU Wayfair Delivery Network\n|EVRI|EVRI\n|EWALS_BV|Ewals BV\n|EWCF|EMERY WORLDWIDE\n|EXAPAQ|Exapaq\n|EXELOT|Exelot Ltd. Tracking\n|EX

# --- truncated at 32 KB (457 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/channable/refs/heads/main/openapi/channable-transporters-api-openapi.yml