We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7d73fa commit 59b3fc5Copy full SHA for 59b3fc5
src/PaymentApi.php
@@ -129,6 +129,18 @@ public function siirtoTransactionResult($transactionId)
129
return $this->makeRequest(self::$METHOD_GET, $uri);
130
}
131
132
+ /**
133
+ * Used to find out whether or not an Pivo transaction succeeded.
134
+ * @param string|UUID $transactionId
135
+ * @return Response
136
+ * @throws \Httpful\Exception\ConnectionErrorException
137
+ */
138
+ public function pivoTransactionResult($transactionId)
139
+ {
140
+ $uri = '/transaction/' . $transactionId . '/pivo/result';
141
+ return $this->makeRequest(self::$METHOD_GET, $uri);
142
+ }
143
+
144
/**
145
* @param string $transactionId
146
* @param string $amount
0 commit comments