NullPay
  1. Transaction
NullPay
  • Private
    • Transaction
      • Transaction History
        GET
      • Create Transaction
        POST
      • Transaction Detail
        GET
    • Merchant
      • Balances
      • Coin Settings
      • Update Coin Settings
    • Withdraw
      • Withdrawal History
      • Withdraw
      • Fiat Withdraw
  • Public
    • Health Check
      GET
    • Get Coins
      GET
    • Get Currencies
      GET
  • IPN Webhooks
    • IPN Handler
      POST
  1. Transaction

Transaction History

GET
/api/v1/p/transaction
Get the transaction history of the merchant.

Request

Query Params

Header Params

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.nullpay.net/api/v1/p/transaction' \
--header 'x-api-key;'

Responses

🟢200The transactions details has been successfully retrieved.
application/json
Body

Example
[
    {
        "id": "12345678-1234-1234-1234-123456789012",
        "createdAt": "2024-01-01T00:00:00.000Z",
        "updatedAt": "2024-01-01T00:00:00.000Z",
        "buyerEmail": "buyer@nullpay.net",
        "productName": "Product Name",
        "productCount": 1,
        "productPrice": "1",
        "productCurrency": "USD",
        "coinSubSymbol": "BTC",
        "coinSymbol": "BTC",
        "isTestNetwork": false,
        "totalAmountAsCoin": "1",
        "feeAsCoin": "1",
        "productTotal": "1",
        "status": "completed",
        "merchantName": "1",
        "merchantId": "1",
        "paidAmountAsCoin": "1",
        "estimatedPaidAmount": "1",
        "estimatedPaidAmountFiat": "1"
    }
]
🟠400Bad request, please check the request payload.
🟠401Unauthorized request, please check the API key.
🟠408Request timeout, please try again later.
🟠429Too many requests, please try again later.
Modified at 2024-07-20 10:31:46
Previous
Private
Next
Create Transaction
Built with