3. Query
You can track the payment trigger order you submitted for your pending payouts in the pool within the marketplace through this service.
Initiate Payment Order
GET
{{Base Adres}}/api/paywall/marketplace/manual/trigger/inquiry
apikeypublic
string
Yes
The Public Key obtained from the merchant panel.
apiclientpublic
string
Yes
The Public Client obtained from the merchant panel.
jobid
Guid
Yes
The tracking number of the payment order. In the response returned from Paywall for your initiation request, the jobid parameter is included.
Response returned from the service:
ErrorCode
int
Error code. Returns '0' if the operation is successful.
Result
bool
Returns either true or false. Returns 'true' if the operation is successful.
Message
string
If the operation fails, this is the error message provided. It supports language localization based on the locale parameter.
Body
object
Operation detail information.
{
"ErrorCode": 0,
"Result": true,
"Message": "",
"Body": {
"JobId": "89b9bef1-d7af-42b9-8f3b-7c4331cf274b",
"DateFrom": "2024-07-04T00:00:00",
"DateTo": "2024-07-06T00:00:00",
"Earning": 72.0300,
"Count": 1,
"AnySuccess": true,
"Results": [
{
"Result": true,
"ResultMessage": ""
}
]
}
}
Last updated