🏆 We won the Shopify Build Award Read more →

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.

Below are integration guides for specific apps and systems.

Custom

Most ERPs and WMS support reading pickup point codes from order custom attributes. In the pickup point configuration, enable Order custom attributes and define the attribute with the variable {{ point.code }}. The attributes will be added to the order within seconds after it is placed.

Order attributes

Shippingbo

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

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 }}

Apilo

Apilo 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

Juo Subscriptions

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

BOX NOW App

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

KeyValue
boxNowlockerId{{ point.code }}

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.

Global-e

Contact us to learn more.

nShift Webshipper

Contact nShift Webshipper support to learn more.

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 }}"
      }
    }
  }
}