BuckBus
API
API
  1. Payments
  • API Introduction
    • Introduction
    • References
    • Test store
    • Authorization
    • Processing of requests
    • Webhooks
  • APIs
    • Assets
      • List assets
    • Accounts
      • List accounts
    • Payments
      • Create payment
        POST
      • Create fiat payment
        POST
      • List payments
        GET
      • Payment details
        GET
      • List payment transactions
        GET
    • Dedicated addresses
      • Create dedicated address
      • Release dedicated address
    • Transfers
      • Create transfer
    • Withdrawals
      • Create withdrawal
      • Withdrawal details
    • Convert
      • Convert amount
  • Schemas
    • Payment
    • PaymentTransaction
    • Lang
    • Withdrawal
    • DedicatedAddress
    • Providers
    • Asset
    • Account
    • Accounts
API
API
  1. Payments

List payment transactions

GET
https://api.bucksbus.com/int/payment/{payment_id}/trxs

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Path Params

Header Params

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠422Unprocessible Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.bucksbus.com/int/payment//trxs' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json'
Response Response Example
200 - Example 1
[
    {
        "status": "string",
        "status_name": "string",
        "trx_date": "2019-08-24T14:15:22Z",
        "trx_received": "2019-08-24T14:15:22Z",
        "crypto_network": "string",
        "crypto_network_name": "string",
        "address": "string",
        "trx_hash": "string",
        "crypto_address_link": "http://example.com",
        "crypto_transaction_link": "http://example.com",
        "amount": "string",
        "currency": "string",
        "asset_id": "string"
    }
]
Previous
Payment details
Next
Create dedicated address
Built with