Site Logo

Yodel Collect Plus Guide

Yodel Collect Plus offers domestic shipping solutions for shipments originating in Great Britain.

This guide provides developers an overview of shipping services that Yodel Collect Plus offers and the service codes that you will use to create Yodel Collect Plus shipments.

Connect Your Account

ShipEngine API allows you to connect your Yodel Collect Plus accounts programmatically without logging in to the ShipEngine API dashboard. This is useful if you have wrapped a custom UI around the ShipEngine API toolset and want to add or disconnect existing carrier accounts without exposing your end users to the API dashboard.

These APIs can be used in parallel with the ShipEngine Partner APIs to programmatically create new ShipEngine users, and then connect existing Yodel Collect Plus accounts all via the API without logging into a dashboard. Together these APIs empower you to completely white-label the ShipEngine experience for your end users.

Continue below for instructions on how to programatically connect Yodel Collect Plus using the ShipEngine API.

For instructions on connecting Yodel Collect Plus via the ShipEngine dashboard, go to our Yodel Collect Plus help article.

Yodel Collect Plus Account Information Model

PropertyDescriptionType
client_nameClient Namestring
api_keyAPI Keystring, required
client_passwordClient Passwordstring, required
client_idClient User IDstring, required

Example POST Call

POST /v1/connections/carriers/yodel_collect_plus_c2c

1
2
3
4
5
6
7
8
9
10
POST /v1/connections/carriers/yodel_collect_plus_c2c HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__
Content-Type: application/json
{
"client_id": "ID1234"
"client_password": "123456789",
"client_name": "Example Corp.",
}

Example POST Response

Your account will now appear in your carriers list with an assigned carrier_id that you will specify when creating Yodel Collect Plus shipments.

1
2
3
{
"carrier-id": "se-1234567"
}

Yodel Collect Plus Service Details

ServiceService API Codes
Store to Home - Extra Large Parcel [Print at Home]store_to_home_xl_print_home
Store to Home - Extra Large Parcel [Print in Store]store_to_home_xl_print_store
Store to Home - Large Parcel [Print at Home]store_to_home_lg_print_home
Store to Home - Large Parcel [Print in Store]store_to_home_lg_print_store
Store to Home Medium Parcel [Print at Home]store_to_home_med_print_home
Store to Home Medium Parcel [Print at Store]store_to_home_med_print_store
Store to Home Small Parcel [Print at Home]store_to_home_sm_print_home
Store to Home Small Parcel [Print at Store]store_to_home_sm_print_store
Store to Store - Extra Large Parcel [Print at Home]store_to_store_xl_print_home
Store to Store - Extra Large Parcel [Print in Store]store_to_store_xl_print_store
Store to Store - Large Parcel [Print at Home]store_to_store_lg_print_home
Store to Store - Large Parcel [Print in Store]store_to_store_lg_print_store
Store to Store - Medium Parcel [Print at Home]store_to_store_md_print_home
Store to Store - Medium Parcel [Print in Store]store_to_store_md_print_store
Store to Store - Small Parcel [Print at Home]store_to_store_sm_print_home
Store to Store - Small Parcel [Print in Store]store_to_store_sm_print_store

Package Types

NameAPI CodePackage Attributes
Packageyodel_collect_plus_c2c_packageDomestic

To ensure you always have the most up-to-date information, use the List Carrier Advanced Options call.

You are now ready to create shipments using CarrierName via ShipEngine!