POST
/
TMGetTransactions
curl --request POST \
  --url https://gateway.finhub.cloud/wallet/2.0.0/TMGetTransactions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'tenantId: <tenantid>' \
  --data '{
  "pageNumber": 123,
  "pageSize": 123,
  "product": "<string>",
  "service": "<string>",
  "startDate": "<string>",
  "endDate": "<string>",
  "filterReasons": [
    "<string>"
  ],
  "searchKey": "<string>"
}'
{
  "data": [
    {
      "id": "<string>",
      "date": "<string>",
      "customer_name": "<string>",
      "status": "<string>",
      "reason": "<string>",
      "customer_id": "<string>",
      "customer_type": "<string>",
      "in_process": true,
      "amount": "<string>"
    }
  ],
  "total_count": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

tenantId
string
required

Body

application/json

Response

201
application/json

Created

The response is of type object.