Playing around with chrome inspect on the fan page I found the search box accesses a nice API:
POST JSON to /api/fancollection/1/search_items
request JSON:
{
"fan_id": 1234,
"search_key": "test",
"search_type": "collection"
}
Response JSON:
{
"gifts": [],
"tralbums": [],
"redownload_urls": {},
"search_key": "test",
"item_lookup": {},
"similar_gift_ids": {},
"track_list": []
}
Playing around with chrome inspect on the fan page I found the search box accesses a nice API:
POST JSON to
/api/fancollection/1/search_itemsrequest JSON:
{ "fan_id": 1234, "search_key": "test", "search_type": "collection" }Response JSON:
{ "gifts": [], "tralbums": [], "redownload_urls": {}, "search_key": "test", "item_lookup": {}, "similar_gift_ids": {}, "track_list": [] }