We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a45c292 commit 79f48dbCopy full SHA for 79f48db
1 file changed
src/sentoo/client.py
@@ -85,7 +85,7 @@ def transaction_create(self, **kwargs: CreateTransactionKwargs) -> Response:
85
dict[str, Any]: API response containing transaction details
86
"""
87
url = self._url("/payment/new")
88
- kwargs["sentoo_merchant_id"] = self._merchant_id
+ kwargs["sentoo_merchant"] = self._merchant_id
89
self._headers["Content-Type"] = "application/x-www-form-urlencoded"
90
return httpx.post(url, headers=self._headers, data=kwargs)
91
0 commit comments