Skip to main content
GET
/
clients
/
me
/
integrations
/
meld
/
retail
/
transactions
List transactions
curl --request GET \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/meld/retail/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "count": 123,
    "remaining": 123,
    "totalCount": 123,
    "transactions": [
      {
        "id": "<string>",
        "sessionId": "<string>",
        "status": "<string>",
        "transactionType": "<string>",
        "serviceProvider": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "externalSessionId": "<string>",
        "externalCustomerId": "<string>",
        "sourceAmount": 123,
        "sourceCurrencyCode": "<string>",
        "destinationAmount": 123,
        "destinationCurrencyCode": "<string>",
        "destinationWalletAddress": "<string>",
        "paymentMethodType": "<string>",
        "cryptoPurchaseDetails": {},
        "serviceProviderDetails": {}
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.portalhq.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.

Response

Transactions retrieved successfully

data
object