Lost transaction information
This request will allow you to find out the status of the transaction search
Either order_id
or custom_transaction_id
must be set.
Authorizations
Query parameters
project_idnumberRequiredExample:
Project ID in the A-Pay system
1234567
order_idnumber Β· min: 16 Β· max: 16OptionalExample:
Deposit ID in the A-Pay system
0123456789abcdef
Pattern: ^[0-9a-f]+$
custom_transaction_idstring Β· min: 1 Β· max: 200OptionalExample:
Transaction ID in the client's system
test_custom_id123
Responses
200
Success
application/json
400
Bad request
application/json
401
Unauthorized
application/json
404
Not found
application/json
get
GET /Remotes/lost-transaction-info?project_id=1 HTTP/1.1
Host: <domain>
apikey: YOUR_API_KEY
Accept: */*
{
"success": true,
"status": "Pending",
"order_id": "0123456789abcdef",
"custom_transaction_id": "test_custom_id123",
"description": "text"
}
β οΈ Error Handling Guide
The following section describes possible error responses for the POST /Remotes/lost-transaction-info
endpoint and how you can resolve them by yourself.
Last updated