GET All Org Deposits

Get merchant's incoming transactions

get

Get merchant's incoming transactions

This endpoint retrieves the details about all transactions of a specific merchant based on the provided merchnat's ORGANIZATION_API_KEY.

Request

Headers

  • Authorization: Bearer {{ORGANIZATION_API_KEY}}

Query Params

  • limit: number

  • offset: number

Response

  • Status: 200 OK

  • Content Type: application/json

Response Body

{
    "data": [
        {
            "id": number,
            "purchaseId": string,
            "address": string,
            "blockchain": Enum('ethereum', 'tron', 'binance-smart-chain', 'MATIC'),
            "assets": [
                Enum('USDT', 'USDC', 'ETH', 'MATIC','BNB', 'TRX')
             ],
            "hash": string,
            "amount": number,
            "sourceaddress": string
        },
     ]
}
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
offsetintegerOptionalExample: 0
limitintegerOptionalExample: 5
Responses
200

OK

application/json
Responseobject
get
/v1/merchant/incoming-transaction
200

OK

Last updated

Was this helpful?