Find Locations
The FindLocations request searches for, and returns, the addresses of the nearest package drop-off locations, including Office Print and Ship Center locations.
FedEx
Example:
{
"carrier": "FedEx",
"action": "FindLocations",
"params": {
"attributes": [
"SATURDAY_DROPOFFS"
],
"locations": [
"FEDEX_OFFICE"
],
"results_requested": 4,
"radius": 50,
"ship_city": "Briggs",
"ship_state": "TX",
"ship_code": "78608-0001",
"ship_country": "US",
"test": true
}
}
One or more attributes and locations can be provided.
Locations
- "FEDEX_AUTHORIZED_SHIP_CENTER"
- "FEDEX_EXPRESS_STATION"
- "FEDEX_FREIGHT_SERVICE_CENTER"
- "FEDEX_GROUND_TERMINAL"
- "FEDEX_HOME_DELIVERY_STATION"
- "FEDEX_OFFICE"
- "FEDEX_SELF_SERVICE_LOCATION"
- "FEDEX_SHIPSITE"
- "FEDEX_SMART_POST_HUB"
Attributes
- ACCEPTS_CASH
- ALREADY_OPEN
- COPY_AND_PRINT_SERVICES
- DANGEROUS_GOODS_SERVICES
- DIRECT_MAIL_SERVICES
- EXPRESS_FREIGHT_DROPOFFS
- EXPRESS_PARCEL_DROPOFFS
- FEDEX_FREIGHT_DROPOFFS
- GROUND_DROPOFFS
- GROUND_HOME_DELIVERY_DROPOFFS
- LOCATION_IS_IN_AIRPORT
- NOTARY_SERVICES
- OBSERVES_DAY_LIGHT_SAVING_TIMES
- OPEN_TWENTY_FOUR_HOURS
- PACKAGING_SUPPLIES
- PACK_AND_SHIP
- PASSPORT_PHOTO_SERVICES
- RETURNS_SERVICES
- SATURDAY_DROPOFFS
- SATURDAY_EXPRESS_HOLD_AT_LOCATION
- SIGNS_AND_BANNERS_SERVICE
- SONY_PICTURE_STATION
- VIDEO_CONFERENCING
- WEEKDAY_EXPRESS_HOLD_AT_LOCATION
- WEEKDAY_GROUND_HOLD_AT_LOCATION
- SAME_DAY_DROPOFFS
- SAME_DAY_CITY_DROPOFFS
- DROP_BOX
- SHIP_AND_GET
- CLEARANCE_SERVICES
- DOMESTIC_SHIPPING_SERVICES
- INTERNATIONAL_SHIPPING_SERVICES
Find all hold locations:
{
"carrier": "FedEx",
"action": "FindLocations",
"params": {
"attributes": [
"SATURDAY_EXPRESS_HOLD_AT_LOCATION",
"WEEKDAY_EXPRESS_HOLD_AT_LOCATION",
"WEEKDAY_GROUND_HOLD_AT_LOCATION"
],
"locations": [
"FEDEX_OFFICE"
],
"results_requested": 4,
"radius": 50,
"ship_city": "Briggs",
"ship_state": "TX",
"ship_code": "78608-0001",
"ship_country": "US",
"test": true
}
}
UPS
Example:
{
"carrier": "UPS",
"action": "FindLocations",
"params": {
"request_option": "64",
"ship_city": "Atlanta",
"ship_state": "GA",
"ship_code": "85281",
"ship_code_extended": "4510",
"ship_country": "US",
"test": true
}
}