Skip to main content

Integrations

When an order has a selected pickup point, the pickup point information is stored in the order metafield (atlas_pickup_points.point). This is always active and requires no configuration.

Most third-party systems expect pickup point details in a specific format. You can pass pickup point data through order custom attributes, shipping address updates, or custom metafields. See How to get pickup point data into my fulfillment software for setup instructions.

#Specific apps and systems

Below are integration guides for specific apps and systems.

#Apilo

Apilo automatically reads the selected pickup point from orders. No configuration is needed.

#Base (formerly BaseLinker)

Base can read the selected pickup point from orders using the following order attributes:

KeyValue
PickupPointId{{ point.code }}
PickupPointName{{ point.details.name }}
PickupPointAddress{{ point.address.address1 }}
PickupPointCity{{ point.address.city }}
PickupPointPostalCode{{ point.address.zip }}
PickupPointCourier{{ point.provider }}

#BOX NOW App

BOX NOW App can read the selected pickup point from orders using the following order attributes:

KeyValue
boxNowlockerId{{ point.code }}

#Global-e

Contact Global-e support to learn more.

#Juo Subscriptions

Juo Subscriptions automatically reads the selected pickup point from orders. No configuration is needed.

#Mondial Relay App by JOOM

Mondial Relay App can read the selected pickup point from orders using the following order attributes:

KeyValue
mondial_relay_id{{ point.code }}
mondial_relay_name{{ point.details.name }}
mondial_relay_address{{ point.address.address1 }}
mondial_relay_city{{ point.address.city }}
mondial_relay_zip{{ point.address.zip }}
mondial_relay_country{{ point.address.country_code }}
mondial_relay_livtrue

#nShift Webshipper

Contact nShift Webshipper support to learn more.

#Ongoing WMS

Ongoing WMS can read the selected pickup point from orders. In the Ongoing WMS integration setup, enable Atlas Pickup Points integration. Additionally, add the following order attribute:

KeyValue
OrderServicePointCode{{ point.code }}

See Ongoing WMS’s documentation Shopify integration for setup instructions.

#Shippingbo

Shippingbo automatically reads the selected pickup point from orders. Simply go to Shippingbo, and in Shopify connection settings, enable Atlas Pickup Points integration.

#ShippyPro

If you use ShippyPro for shipping label generation, we recommend using the ShippyPro provider in Atlas Pickup Points instead of configuring individual carrier integrations. This requires a ShippyPro API key. See ShippyPro’s help article How to use Atlas Pickup Points with ShippyPro for setup instructions.

#UPS Shipping (Official)

UPS Shipping (Official) can read the selected pickup point from orders when the shipping address update option is enabled in the pickup point configuration.

#WSA DPD Integration

WSA DPD Integration can read the selected pickup point from orders after adding order attribute:

Key: DPD Pickup Office

Value:

{
  "office": "{{ point.details.name }}",
  "id": "{{ point.code }}",
  "data": {
    "x_pickupLocation": {
      "address": {
        "street": "{{ point.address.address1 }}",
        "town": "{{ point.address.city }}",
        "postcode": "{{ point.address.zip }}",
        "countryCode": "{{ point.address.country_code }}"
      },
      "addressPoint": {
        "latitude": "{{ point.address.latitude }}",
        "longitude": "{{ point.address.longitude }}"
      }
    }
  }
}

Or in case of Speedy (DPD Bulgaria):

Key: DPD Pickup Office

Value:

{
  "office": "{{ point.details.name }}",
  "id": "{{ point.code }}",
  "data": {
    "x_type": "{{ point.attributes.type }}",
    "x_pickupLocation": {
      "address": {
        "street": "{{ point.address.address1 }}",
        "town": "{{ point.address.city }}",
        "postcode": "{{ point.address.zip }}",
        "countryCode": "{{ point.address.country_code }}"
      },
      "addressPoint": {
        "latitude": "{{ point.address.latitude }}",
        "longitude": "{{ point.address.longitude }}"
      }
    }
  }
}