Step‑by‑step guide: Show pick‑up points in your checkout

<aside> ℹ️

This enables your checkout to offer pick‑up point delivery using Bigblue transportation offers. This guide walks you through adding a nearby pick‑up point to an order in a few steps.

Overview and logic:

Step 1: Generate a token to call the pick-up point endpoints

Step 2: Get the transport offer linked to your shipping methods

Step 3: List pick-up points from the transport offer near an address

Step 4 & 5: Select a pick-up point and include it when creating the order

</aside>


Step 1 - Create a short‑lived StorefrontAccessToken

Purpose: your frontend will use this token to call the Checkout API directly.

<aside> 📍

POST Method: https://api.bigblue.co/bigblue.storeapi.v1.PublicAPI/GetStorefrontAccessToken

</aside>

Input

Field Type Description
Body object Empty object {}

Response schema

Field Type Description
token string JWT storefront token
expiry_time datetime (ISO‑8601) UTC expiry timestamp

Request

POST GetStorefrontAccessToken

Example

<https://api.bigblue.co/bigblue.storeapi.v1.PublicAPI/GetStorefrontAccessToken>

Body (empty brackets)

{}

Response

200 Success

{
  "token": "eyJhbGciOi...",
  "expiry_time": "2025-12-16T18:00:00Z"
}