Callback: account.getInventory

The account.getInventory endpoint returns details about the available offers for the players

Example Request

{
  "account": "abcd1234efgh5678"
}

Example Response

See the Offer Segmentation page for detailed examples

[
  {
    "sku": "LEGENDARY_BUNDLE",
    "purchased": 0,
    "limit": 1
  },
  {
    "sku": "NOT_AS_LEGENDARY_BUNDLE",
    "purchased": 1,
    "limit": 1
  },
  {
    "sku": "ARGUABLY_MORE_LEGENDARY_BUNDLE",
    "purchased": 0,
    "limit": 1,
    "startTime": "2023-12-09T00:00:00.000Z",
    "durationInSeconds": 432000
  }
]

What’s Next