Transfers
Receive all account transactions
Clients
Companies
- GETList Companies
- GETGet Company
- POSTAccept contract for company
- GETGet KYB access token for company
- GETReceive information about the company inDevelopment
- GETReceive information about the company
- POSTCreate company
- PATCHUpdate company
- PATCHSet company email
- POSTVerify company email
- POSTResend verification code
- PATCHAccept contract
Accounts
- GETReceive all accounts for the client
- PATCHActivate the account of the customer
- GETReceive all accounts for the client
- POSTInitiate a new account for the customer
- GETReceive all accounts for the client
- PATCHActivate the account of the customer
- GETGet bank details for extAccount
- GETReceive bank detailes for the account
- POSTCreate statements for account
- GETReceive information about iban
- PATCHActivate the account of the client
Recipients
Contracts
KYC
Transfers
Crypto
Contracts
Recipients
Transfers
Receive all account transactions
Return the list of transactions for the client account
GET
/
v1
/
transactions
curl --request GET \
--url https://client-api.dev.finhost.io/v1/transactions \
--header 'Authorization: Bearer <token>'
[
{
"transactions": [
{
"accountId": "<string>",
"amlId": "<string>",
"id": "<string>",
"amlScore": "<string>",
"amlStatus": "<string>",
"amount": "<string>",
"charge": {
"total": "<string>",
"fee": "<string>",
"percentage": "<string>",
"flat": "<string>",
"calculator": "<string>",
"contractId": "<string>",
"amount": "<string>",
"currency": "<string>",
"revenueAccount": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"direction": "<string>",
"extAccountId": "<string>",
"extId": "<string>",
"inTransactionId": "<string>",
"outTransactionId": "<string>",
"paymentMethod": "<string>",
"provider": "<string>",
"recipient": {
"name": "<string>",
"surname": "<string>",
"bicSwift": "<string>",
"iban": "<string>",
"type": "individual",
"ukAccountNumber": "<string>",
"ukSortCode": "<string>",
"bankName": "<string>",
"street": "<string>",
"houseNumber": "<string>",
"refinement": "<string>",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"postCode": "<string>",
"reference": "<string>",
"email": "<string>"
},
"sender": {
"name": "<string>",
"surname": "<string>",
"bicSwift": "<string>",
"iban": "<string>",
"type": "individual",
"ukAccountNumber": "<string>",
"ukSortCode": "<string>",
"bankName": "<string>",
"street": "<string>",
"houseNumber": "<string>",
"refinement": "<string>",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"postCode": "<string>",
"reference": "<string>",
"email": "<string>"
},
"status": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"fee": true
}
],
"lastKey": {
"accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Account id
Available options:
ascending
, descending
Response
200
application/json
200 response
The response is of type object[]
.
curl --request GET \
--url https://client-api.dev.finhost.io/v1/transactions \
--header 'Authorization: Bearer <token>'
[
{
"transactions": [
{
"accountId": "<string>",
"amlId": "<string>",
"id": "<string>",
"amlScore": "<string>",
"amlStatus": "<string>",
"amount": "<string>",
"charge": {
"total": "<string>",
"fee": "<string>",
"percentage": "<string>",
"flat": "<string>",
"calculator": "<string>",
"contractId": "<string>",
"amount": "<string>",
"currency": "<string>",
"revenueAccount": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"direction": "<string>",
"extAccountId": "<string>",
"extId": "<string>",
"inTransactionId": "<string>",
"outTransactionId": "<string>",
"paymentMethod": "<string>",
"provider": "<string>",
"recipient": {
"name": "<string>",
"surname": "<string>",
"bicSwift": "<string>",
"iban": "<string>",
"type": "individual",
"ukAccountNumber": "<string>",
"ukSortCode": "<string>",
"bankName": "<string>",
"street": "<string>",
"houseNumber": "<string>",
"refinement": "<string>",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"postCode": "<string>",
"reference": "<string>",
"email": "<string>"
},
"sender": {
"name": "<string>",
"surname": "<string>",
"bicSwift": "<string>",
"iban": "<string>",
"type": "individual",
"ukAccountNumber": "<string>",
"ukSortCode": "<string>",
"bankName": "<string>",
"street": "<string>",
"houseNumber": "<string>",
"refinement": "<string>",
"city": "<string>",
"region": "<string>",
"country": "<string>",
"postCode": "<string>",
"reference": "<string>",
"email": "<string>"
},
"status": "<string>",
"updatedAt": "2023-11-07T05:31:56Z",
"fee": true
}
],
"lastKey": {
"accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
}
]