Skip to main content
POST
/
auth
/
bridge
Bridge Token Exchange
curl --request POST \
  --url https://api.example.com/auth/bridge
Exchanges a cross-service bridge token for customer-scoped access and refresh tokens. Used when transitioning between platform SSO and the LTV.ai API.

Request

Headers

HeaderTypeRequiredDescription
AuthorizationstringYesBearer <bridge_token>

Response

{
  "accessToken": "eyJhbGciOiJIUzI1NiIs...",
  "refreshToken": "eyJhbGciOiJIUzI1NiIs...",
  "customer": {
    "id": "uuid",
    "membershipStatus": "member",
    "retailerId": "uuid"
  }
}