Fanatics EcoSystem
  • Fanatics ID
  • Loyalty
  • Home
  • Environments
  • V1 Features
    • Lookup
    • Bulk Bonus FanCash Earn
    • Earn
    • Auth
    • Capture
    • Void
    • Refund
  • V2 Features
    • Add
Powered by GitBook
On this page
  1. V1 Features

Lookup

PreviousV1 FeaturesNextBulk Bonus FanCash Earn

Last updated 3 months ago

Using this endpoint you can get the current loyalty ledger balance as well as if the user must verify their email before they can burn loyalty.

Required Scopes

fancash:lookup

Request

Headers

Name
Description

Authorization

User access token from the code exchange.

Path Parameters

Response

Name
Description

fancash_balance_amount

The dollar amount of FanCash the account has.

linked

True if the account has verified their email otherwise false. If false then burn transactions will fail.

Fancash Lookup based on Account Tenant Fan ID

get

Fancash Lookup based on Account Tenant Fan ID. Requires the fancash:lookup permission.

Path parameters
account_tenant_fanidstring ยท uuidRequired

Account Tenant Fan ID

Header parameters
AuthorizationstringRequired

User or server access Bearer token

Responses
200
Fancash Lookup Response
application/json
400
Bad request
application/json
401
Forbidden
application/json
404
Not Found
application/json
429
Rate Limited
application/json
500
Internal error
application/json
get
GET /v1/{account_tenant_fanid}/lookup HTTP/1.1
Host: 
Authorization: text
Accept: */*
{
  "fancash_balance_amount": "100.48",
  "linked": true
}
  • Required Scopes
  • Request
  • Headers
  • Path Parameters
  • Response
  • GETFancash Lookup based on Account Tenant Fan ID