get("accounts", ["[>]authkeys" => ["accountid"]], "accounts.accountid", ["key" => $VARS["key"]]); if (!$database->has("merchant_transactions", ["AND" => ["txcode" => $VARS["txcode"], "merchantid" => $accountid]])) { sendJsonResp($Strings->get("Transaction does not exist.", false), "ERROR"); } $transaction = $database->get("merchant_transactions", ["amount", "complete", "txcode"], ["txcode" => $VARS["txcode"]]); exitWithJson([ "status" => "OK", "txcode" => $transaction["txcode"], "amount" => $transaction["amount"], "complete" => $transaction["complete"] == true ]);