Starbucks · Example Payload

Starbucks Get Loyalty Account Example

CoffeeFood ServiceLoyaltyOrderingRetailFortune 500

Starbucks Get Loyalty Account Example is an example object payload from Starbucks, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.starbucks.com/v1/loyalty/accounts/loyalty_abc123",
    "headers": {
      "Authorization": "Bearer {token}",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "id": "loyalty_abc123",
      "memberName": "Jane Smith",
      "tier": "Gold",
      "starBalance": 450,
      "ytdStars": 1240,
      "memberSince": "2020-03-15",
      "status": "active"
    }
  }
}