Knowledgebase & Documentation
Our documentation is the best way to get immediate answers and guidance. We also provide numerous references for the more advanced features and functionality such as the CMS and the API.
Viewing Member Statistics with the PAS API
This action will allow you to view the statistics of a specific member.
REQUEST:
GET: https://publisher.pokeraffiliatesolutions.com/publisher_members/ {MEMBER ID} /stats.xml
REQUIRED PARAMETERS:
- start_date - The beginning date of data that you are requesting.
- end_date - The end date of data that you are requesting.
Note
Date format is YYYY-MM-DD. Requesting the same start / end gives you data for only that day.
RESPONSE:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?xml version="1.0" encoding="UTF-8"?>
<statistics start_date="2010-08-01" end_date="2010-08-18">
<member_id>12345xxx</member_id>
<mgr>484.91</mgr>
<rakeback>218.21</rakeback>
<member_trackers type="array">
<member_tracker>
<id>6</id>
<identifier>qq124</identifier>
<poker_room_id>293</poker_room_id>
<poker_room>Poker Heaven</poker_room>
<mgr>484.91</mgr>
<rakeback>218.21</rakeback>
</member_tracker>
<member_tracker>
<id>2195</id>
<identifier>qq1244343</identifier>
<poker_room_id>293</poker_room_id>
<poker_room>Poker Heaven</poker_room>
<mgr>0</mgr>
<rakeback>0</rakeback>
</member_tracker>
</member_trackers>
</statistics>
|
Viewing *ALL* Member Tracker Statistics with the PAS API
This action will allow you to view the statistics of ALL Member Trackers under your account in one request.
REQUEST:
GET: https://publisher.pokeraffiliatesolutions.com/publisher_member_trackers/stats.xml
PARAMETERS:
- start_date - The beginning date of data that you are requesting, formatted as YYYY-MM-DD.
- end_date - The end date of data that you are requesting, formatted as YYYY-MM-DD.
- exclude_unknown - Set to 'true' to exclude 'Unknown Trackers' from the returned XML. (OPTIONAL - default is FALSE)
RESPONSE:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <?xml version="1.0" encoding="UTF-8"?>
<member_trackers start_date="2010-01-01" end_date="2010-01-30">
<member_tracker>
<poker_room_name>Full Tilt Poker</poker_room_name>
<identifier>kramaz2000</identifier>
<type>Rakeback</type>
<id>32</id>
<member_id>25707</member_id>
<created_at>2006-08-13 19:00:00 -0500</created_at>
<mgr>0.00</mgr>
</member_tracker>
<member_tracker>
<poker_room_name>Full Tilt Poker</poker_room_name>
<identifier>minileaf</identifier>
<type>Rakeback</type>
<id>125</id>
<member_id>25689</member_id>
<created_at>2006-08-13 19:00:00 -0500</created_at>
<mgr>0.00</mgr>
</member_tracker>
</member_trackers>
|