Site Logo

APG eCommerce Guide

APG eCommerce is one of the leading suppliers of cross-border ecommerce delivery solutions with an established presence in Asia, Europe and the US.

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

Connect Your Account

ShipEngine API allows you to connect your APG eCommerce 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 APG eCommerce 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 APG eCommerce using the ShipEngine API.

APG eCommerce Account Information Model

PropertyDescriptionType
usernameAPG account usernamestring, required
passwordAPG account passwordstring, required
sender_codeAPG Sender Codestring

Example POST Call

POST /v1/connections/carriers/APG eCommerce

1
2
3
4
5
6
7
8
9
10
POST /v1/connections/carriers/carrierName HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__
Content-Type: application/json
{
"username": "YourUserName"
"password": "123456789",
"sender_code": "not required",
}

Example POST Response

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

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

APG eCommerce Service Details

APG offers several expedited and parcel delivery services. Click to view all services supported by ShipEngine.

Click to view: APG eCommerce Services
ServiceService API CodesSupported Ship From Countries
ePacketepacketUS, NL, HK, GB
ePacket Plusepacket_plusUS, NL, HK, GB
eParcel Premiumeparcel_premiumUS, NL, HK, GB
eParcel Expeditedeparcel_expeditedUS, NL, HK, GB
eParcel Expresseparcel_expressUS, NL, HK, GB
eParcel Premium PUDOeparcel_premium_pudoUS, NL, HK, GB
eParcel Expedited PUDOeparcel_expedited_pudoUS, NL, HK, GB
eReturn Drop Offereturn_drop_offUS, NL, HK, GB
eReturn Drop Off Intlereturn_drop_off_intlUS, NL, HK, GB
eReturn Pick upereturn_pick_upUS, NL, HK, GB, AE, SA
eReturn Pick up Intlereturn_pick_up_intlUS, NL, HK, GB, AE, SA

Packages

NameAPI CodePackage Attributes
Packageapg_ecommerce_packageInternational

Return Services

Return services are supported for this carrier.

Review the Return Shipping Labels page for details on creating return labels with ShipEngine.

Adding Shipment Insurance

Adding shipment insurance is supported with APG. Please contact APG eCommerce for specific details on the insurance coverage available for each service.

Review the Parcel Insurance page for details on adding shipment insurance with ShipEngine.

Advanced Options

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 APG eCommerce via ShipEngine!