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