Skip to main content

Empower Your Dev Team with the Rhenus Logistics UK Tracking API via AfterShip.

Integrate seamless Rhenus Logistics UK tracking integration with robust RESTful API and webhooks to automate Rhenus Logistics UK delivery updates in real-time.

With an AfterShip developer account, you'll experience fast tracking updates and industry-leading 99.9% API uptime. Enhance your logistics now with the Rhenus Logistics UK Tracking API.

curl --request GET \
     --url https://api.aftership.com/postmen/v3/labels/id \
     --header 'Content-Type: application/json'
Rhenus Logistics UK
Delivery dateMarch10Your order is
is about to pick up
MAR 7
09:56 AM
In transitDeparted Shipping Partner Facility, Rhenus Logistics UK Awaiting Item
192 Glenlake Court
See more info

Rhenus Logistics UK Tracking API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Last Checkpoint API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Estimated delivery date API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Rate API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Label API

Create a label

Create a label.

Parameters

  • billing Billing
    Billing object: the description of billing information
    • paid_by string required
      Allowed values: shipper third_party recipient
    • method PaymentMethodAccount
      PaymentMethodAccount object: the description of account information
  • customs Customs
    Customs object: the description of customs information
    • purpose string required
      Allowed values: gift merchandise personal sample return
      repair non-merchandise
    • terms_of_trade string
      Allowed values: dat ddu ddp dap exw fca fob cip cif
      cpt cfr dpu
    • eei one of: AES
      AES object: the description of EEI Type - aes
    • billing Billing
      Billing object: the description of billing information
    • importer_address Address
      Address object: the description of address information
    • passport object
      Passport Object
    • additional_charges array[object]
      This array contains additional_charges object. Additional charge to be added to the commercial invoice of this shipment. Only applies to FedEx, DHL, UPS currently.
  • shipment Shipment
    Shipment object: the description of shipment information
  • ship_fromAddress required
    Address object: the description of address information
  • ship_to Address required
    Address object: the description of address information
  • parcels array[Parcel] required
    Parcels of shipment
  • return_to Address
    Address object: the description of address information
  • delivery_instructions string
    Instructions to aid in prompt delivery of the shipment.

Return

  • metaMeta
    Meta data object.
    • code integer required
      Code of Meta
    • message string required
      Message of Meta
    • details array[Error]
      Details of Meta
    • retryable boolean
      Whether this request will be retryable or not
  • data Label
    Label object: the description of label object
    • id string
      Label ID
    • status string
      Allowed values: creating created cancelling cancelled manifesting manifested failed
      ship_date string
      tracking_numbers array[string]
curl --request POST \
     --url https://api.aftership.com/postmen/v3/labels \
     --header 'Content-Type: application/json'\
     --data '{"shipment":{"ship_to":{"city":"Salt Lake City","state":"UT","phone":"123456789","email":"test@test.com","street1":"230 W 200 S LBBY","country":"USA","postal_code":"84101","contact_name":"AfterShip Shipping","company_name":"AfterShip Shipping"},"parcels":[{"box_type":"custom","dimension":{"width":10,"height":10,"depth":10,"unit":"cm"},"items":[{"description":"Food Bar","quantity":1,"price":{"currency":"USD","amount":100},"item_id":"1234567","origin_country":"CHN","weight":{"unit":"kg","value":1},"sku":"imac2014","hs_code":"100630","return_reason":"too big"}],"description":"Food XS","weight":{"unit":"kg","value":1}}],"ship_from":{"city":"Salt Lake City","state":"UT","phone":"123456789","email":"test@test.com","street1":"230 W 200 S LBBY","country":"USA","postal_code":"84101","contact_name":"AfterShip Shipping","company_name":"AfterShip Shipping"}},"paper_size":"4x6","references":["refernce1"],"is_document":false,"service_type":"usps-discounted_express_mail","custom_fields":{"ship_code":"01"},"return_shipment":false,"shipper_account":{"id":"3ba41ff5-59a7-4ff0-8333-64a4375c7f21"}}'
response.json
{
  "meta": {
    "code": 200,
    "message": "OK",
    "details": []
  },
  "data": {
    "id": "3318b97b-150f-4205-840d-a6d966b9e0ea",
    "rate": {
      "total_charge": {
        "amount": 0,
        "currency": "USD"
      },
      "service_type": "{service_type}",
      "service_name": "{service_name}",
      "transit_time": null,
      "info_message": null,
      "charge_weight": {
        "unit": "lb",
        "value": 3.307
      },
      "delivery_date": null,
      "error_message": null,
      "shipper_account": {
        "id": "00000000-0000-0000-0000-000000000000",
        "slug": "rhenus-uk",
        "description": "Rhenus Logistics UK Sandbox"
      },
      "pickup_deadline": null,
      "booking_cut_off": null,
      "detailed_charges": []
    },
    "files": {
      "label": {
        "url": "https://sandbox-download.postmen.com/label/2015-11-27/00000000-0000-0000-0000-000000000000-1441785264309885.pdf",
        "file_type": "pdf",
        "paper_size": "4x8"
      },
      "invoice": null,
      "manifest": null,
      "customs_declaration": null
    },
    "status": "created",
    "ship_date": "2022-09-09",
    "created_at": "2022-05-09T07:54:13.024Z",
    "updated_at": "2022-09-09T07:54:24.569Z",
    "tracking_numbers": [
      "3884930103"
    ]
  },
  "custom_fields": {
    "ship_code": "01"
  }
}

Get a label

Get a label.

Parameters

  • id string required
    label id

Returns

  • meta Meta
    Meta data object.
    • code integer required
      Code of Meta
    • message string required
      Message of Meta
    • details array[Error]
      Details of Meta
    • retryable boolean
      Whether this request will be retryable or not
  • data Label
    Label object: the description of label object
    • id string
      Label ID
    • status string
      Allowed values: creating created cancelling cancelled manifesting manifested failed
curl --request GET \
     --url https://api.aftership.com/postmen/v3/labels/id \
     --header 'Content-Type: application/json'
response.json
{
  "meta": {
    "code": 200,
    "type": "OK",
    "message": "Everything worked as expected."
  },
  "data": {
    "id": "3318b97b-150f-4205-840d-a6d966b9e0ea",
    "rate": {
      "total_charge": {
        "amount": 0,
        "currency": "USD"
      },
      "service_type": "{service_type}",
      "service_name": "{service_name}",
      "transit_time": null,
      "info_message": null,
      "charge_weight": {
        "unit": "lb",
        "value": 3.307
      },
      "delivery_date": null,
      "error_message": null,
      "shipper_account": {
        "id": "00000000-0000-0000-0000-000000000000",
        "slug": "rhenus-uk",
        "description": "Rhenus Logistics UK Sandbox"
      },
      "pickup_deadline": null,
      "booking_cut_off": null,
      "detailed_charges": []
    },
    "files": {
      "label": {
        "url": "https://sandbox-download.postmen.com/label/2015-11-27/00000000-0000-0000-0000-000000000000-1441785264309885.pdf",
        "file_type": "pdf",
        "paper_size": "4x8"
      },
      "invoice": null,
      "manifest": null,
      "customs_declaration": null
    },
    "status": "created",
    "ship_date": "2015-09-09",
    "created_at": "2015-09-09T07:54:13.024Z",
    "updated_at": "2015-09-09T07:54:24.569Z",
    "tracking_numbers": [
      "3884930103"
    ]
  }
}

Rhenus Logistics UK Manifest API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Cancel Label API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Pickup API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Cancel Pickup API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Shipper Account API

We currently do not support this API. If you are interested in this API, please request for an integration.

Rhenus Logistics UK Address Validation (Beta) API

We currently do not support this API. If you are interested in this API, please request for an integration.

Frequently Asked Questions

How to generate Rhenus Logistics UK API key?

To ensure secure access, AfterShip requires an as-api-key in the header of each request. You can request a free API key by submitting the form. Get a free API Key

Do I need a Rhenus Logistics UK developer account to use this API?

No, you don't need a Rhenus Logistics UK account. AfterShip has partnered with Rhenus Logistics UK, allowing you direct access to Rhenus Logistics UK tracking data through the AfterShip API.

Enhance the entire post-purchase experience with AfterShip

Google Drive
Google Drive
Google Drive
Google Drive
Google Drive
AfterShip
Google Drive
Google Drive
Google Drive
Google Drive
Google Drive

Integrate Rhenus Logistics UK and Multi-Carrier Tracking APIs

Easily integrate shipment tracking into your system or website for a seamless tracking experience. AfterShip's tracking API allows you to offer shipment visibility across multiple touchpoints without stretching your development resources.
  • Global coverage: 1,100+ carrier integrations and 52+ languages
  • Accuracy: Normalized data and standardized 7 main-statuses and 33 sub-statuses
  • Data integrity: AI helps recognize new tracking number patterns
  • Uptime & Reliability: 99.99%+ uptime, ISO 27001, SOC2, and GDPR compliance
Learn more about Rhenus Logistics UK integration >
Stars

Recognized by customers for exceptional service

G2 BadgeG2 BadgeG2 BadgeG2 BadgeG2 BadgeG2 BadgeG2 BadgeG2 BadgeG2 Badge
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer
Customer