ROADIE


Overview

Roadie is a crowdsourced delivery platform that enables local same-day delivery of just about anything, anywhere in the United States.

Onboarding of a Roadie Carrier Account

To onboard an Roadie carrier account with Roadie, the following pre-requisite is required:

  • Security Credential Password

The onboarding process involves making an API request that includes all necessary details for account setup. Below is a sample API request.

Roadie Sample Request
Copy
Copied
{
   "description": "Roadie"
   "carrierAccountId": "2bYbb4BJrgj6RYX",
   "carrierAccounts": [
    {
      "parameters": [
        {
          "name": "USER_PASSWORD",
          "value": "70648d01fcb90bae08e2be4f2b95ab1dbfd8520b"
        }
      ]
    }
  ]
}
Roadie Sample Response
Copy
Copied
{
    "carrierAccountID": "2bYbb4BJrgj6RYX",
    "description": "Roadie",
    "carrierID": "Roadie",
    "parameters": {
          "name": "USER_PASSWORD",
          "value": "70648d01fcb90bae08e2be4f2b95ab1dbfd8520b"
        },
    "carrierAccountType": "Shipping",
    "provisioningType": "API"
}

API Operations for Shipping with Roadie

The APIs integrate with roadie through the following operations:

OperationsMethodResource Path
Retrieve Country ListGET/api/v1/countries
Get Carrier AccountGET/api/v1/carrierAccounts
Get ServicesGET/api/v1/services
Get Parcel TypesGET/api/v1/parcelTypes
Get Special ServicesGET/api/v1/specialServices
Create a Shipping LabelPOST/api/v1/shipments
Void a LabelPUT/api/v1/shipments/{{shipmentId}}/cancel
Reprint a LabelGET/api/v1/shipments/{{shipmentId}}/reprint
Get Tracking InformationGET/api/v1/tracking/{{trackingNumber}}

Metadata

Metadata provides information about roadie carrier services, including origin and destination countries, supported carrier services, supported package types, and supported special services. Users can select specific origin and destination countries from the provided dropdown menu to dynamically view relevant metadata specific to those countries.

Metadata information not available