checkAdminUntransferred
The checkAdminUntransferred query returns a list of transactions where funds were received but not yet transferred to the admin/custodian wallet. It can help you track pending fund transfers for reconciliation.
π Endpoint
URL: https://argonpay.onrender.com/graphql
Method: POST
Content-Type: application/json
π Query Structure
query CheckAdminUntransferred($apiKey: String!, $network: String!) {
checkAdminUntransferred(apiKey: $apiKey, network: $network) {
transactionId
amount
amountInToken
network
privateKey
seedPhrase
payAddress
recipientAddress
status
adminTransferred
}
}π₯ Parameters
Name
Type
Required
Description
apiKey
String
β
Your ArgonPay API key
network
String
β
One of bep20, solana, ton, usdt-ton
β
Successful Response
π« Error Handling
Returns an empty array if:
The API key is invalid.
The network string is unsupported.
No matching transactions are found.
Logs errors server-side if any database or logic issues occur.
π§ͺ Code Examples
Python Example
JavaScript Example
Last updated