GET All Org Deposits
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
Method: GET
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:
0limitintegerOptionalExample:
5Responses
200
OK
application/json
Responseobject
get
/v1/merchant/incoming-transaction200
OK
Last updated
Was this helpful?