Skip to main content

Customer Info API

: Important Update! New TLS certificates on api.bring.com 27th of October 2025

Migration from Buypass to Let’s Encrypt TLS Certificates As of 15 September 2025, Buypass has stopped allowing registration of new ACME Account and will stop generating/renewing TLS certificates from 15th October 2025. To ensure continuity, we are migrating all TLS certificates from Buypass to Let´s Encrypt.

As part of this activity:

  • Old Buypass certificates will be removed
  • New Let´s Encrypt certificates will be created

Impact to Customers:

  • If your application does not pin the certificate, no action is required and there will be zero impact.
  • If your application does pin the certificate, you will need to download the new Let´s Encrypt certificate and update your application configuration accordingly.

We recommend reviewing your applications to check whether certificate pinning is in place and preparing for updates if needed.

For more queries, contact integrasjon.norge@bring.com (Norway) or edi@bring.com (outside Norway).

The Customer Info API is used to list available services for one or more customers

Authentication

To integrate with the Bring APIs, you will need a Mybring user account with an API key. Information about prerequisites and authentication headers can be found on the general API Getting Started page. In addition to authentication, you need to be authorized.

Rate limiting

Clients exceeding a certain number of requests per second will be throttled, and the response will contain http status code 429. If you have a use case requiring rates above the limit, please contact developer-booking@bring.com for assistance.

Formats

REST JSON over HTTP is the way for all new integrations. While we currently also support XML for legacy reasons, this will be phased out in the future.

What can the Customer Info API help me with?

The Customer Info API can help users bootstrap their checkout and booking process by providing a list of customers, countries, and services available to the user.

Endpoints

Base URL
https://api.bring.com/booking
Usage Method Endpoint
List customer numbers and services GET /api/customers

List customer numbers and services

GET
https://api.bring.com/booking/api/customers

Request

header parameters

X-Mybring-API-Uid
Required
Type
string
X-Mybring-API-Key
Required
Type
string

Responses

200 OK

Schema

Media type: application/json

Required
array of objects
countryCode
Required
string
customerNumber
Required
string
name
Required
string
products
Required
array of strings
string

Response examples

{
  "customers": [
    {
      "countryCode": "NO",
      "customerNumber": "5",
      "name": "Demo customer (00000000005)",
      "products": [
        "3570",
        "3584",
        "4850",
        "5000",
        "5600",
        "5800",
        "9000",
        "9300",
        "9600",
        "9650",
        "BUSINESS_HALFPALLET",
        "BUSINESS_PALLET",
        "BUSINESS_PARCEL",
        "BUSINESS_PARCEL_BULK",
        "BUSINESS_QUARTERPALLET",
        "EXPRESS_NORDIC_0900",
        "EXPRESS_NORDIC_0900_BULK",
        "HOME_DELIVERY_PARCEL",
        "PICKUP_PARCEL",
        "PICKUP_PARCEL_BULK",
        "0344"
      ]
    },
    {
      "countryCode": "SE",
      "customerNumber": "6",
      "name": "Demo customer (00000000006)",
      "products": [
        "0345",
        "BUSINESS_HALFPALLET",
        "BUSINESS_PALLET",
        "BUSINESS_PARCEL",
        "BUSINESS_PARCEL_BULK",
        "BUSINESS_QUARTERPALLET",
        "EXPRESS_NORDIC_0900",
        "EXPRESS_NORDIC_0900_BULK",
        "HOME_DELIVERY_PARCEL",
        "PICKUP_PARCEL",
        "PICKUP_PARCEL_BULK",
        "0344"
      ]
    }
  ]
}
comments powered by Disqus