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
apikeystringRequired
Query parameters
project_idnumberRequiredExample:
Project ID in the A-Pay system
1234567order_idnumber · min: 16 · max: 16OptionalExample:
Deposit ID in the A-Pay system
7fa13dbc3b79e05ePattern: ^[0-9a-f]+$custom_transaction_idstring · min: 1 · max: 200OptionalExample:
Transaction ID in the client's system
custom123Responses
200
Success
application/json
successbooleanRequiredExample:
true if there are no errors
truestatusstring · enumRequiredExample:
Lost transaction status
PendingPossible values: order_idstring · min: 16 · max: 16RequiredExample:
Lost transaction ID in the A-Pay system
7fa13dbc3b79e05ePattern: ^[0-9a-f]+$custom_transaction_idstring · min: 1 · max: 200RequiredExample:
Transaction ID in the client's system
custom123descriptionstringOptional
Description of lost transaction
400
Bad request
application/json
401
Unauthorized
application/json
404
Not found
application/json
get/Remotes/lost-transaction-info
GET /Remotes/lost-transaction-info?project_id=1 HTTP/1.1
Host: <domain>
apikey: YOUR_API_KEY
Accept: */*
{
"success": true,
"status": "Pending",
"order_id": "7fa13dbc3b79e05e",
"custom_transaction_id": "custom123",
"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