Skip to main content
GET
/
clients
/
me
/
integrations
/
meld
/
retail
/
transactions
/
sessions
/
{sessionId}
Get transaction by session
curl --request GET \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/meld/retail/transactions/sessions/{sessionId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "transaction": {
      "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.

Path Parameters

sessionId
string
required

Widget session ID returned by POST /retail/widget.

Response

Transaction retrieved successfully

data
object