accounts transaction

For general discussion of the Poker Mavens software
Post Reply
bejjene
Posts: 18
Joined: Mon Mar 14, 2022 10:17 am

accounts transaction

Post by bejjene »

can someone help me with getting the number of made transactions for an account?

i am using :

$param12= array("Command" =>"AccountsTransactions", "DateStart" => $start, "DateEnd" => $end , "Player" => $player1);
$api12= Poker_API($param12);

now i need to get the number of transactions in this list. can someone help me with this?

i have also another prob . the player is case sensitive .
Kent Briggs
Site Admin
Posts: 5878
Joined: Wed Mar 19, 2008 8:47 pm

Re: accounts transaction

Post by Kent Briggs »

It returns a Count parameter so:

$api12 => Count

To solve the case sensitivity issue, call AccountsGet with the player name (which is not case sensitive) and it will return a Player parameter with the corrected case.
Post Reply