FacebooktwitterYouTube

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 Payments with the PAS API

This action will allow you to view the line item payment history of a specific member.

REQUEST:

GET: https://publisher.pokeraffiliatesolutions.com/publisher_members/ {MEMBER ID} /payments.xml

Note

You may include the optional paramters start_date=”YYYY-MM-DD”&end_date=”YYYY-MM-DD” in your request. Example: https://publisher.pokeraffiliatesolutions.com/publisher_members/ {MEMBER ID}/payments.xml?start_date=”YYYY-MM-DD”&end_date=”YYYY-MM-DD”

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" ?>
<payments start_date="2010-07-01" current_page="1" next_page="" end_date="2010-07-31" total_pages="1" total_entries="8">
  <payment>
    <id>{MEMBER ID}</id>
    <amount>8.82</amount>
    <member_tracker_id>TRACKERID</member_tracker_id>
    <event_date>2010-07-01</event_date>
    <available_date>2010-08-14</available_date>
    <cashout_date>2010-07-01</cashout_date>
    <paid_date>2010-07-01</paid_date>
    <cashout_method_id>19</cashout_method_id>
    <cashout_method>Paid By Site</cashout_method>
    <status>Paid by Site</status>
    <status_id>6</status_id>
    <type>Rake</type>
    <type_id>1</type_id>
    <poker_room>Full Tilt Poker</poker_room>
    <notes>MGR: $32.67
    Rate: 27.0%</notes>
  </payment>
</payments>