Authentication
Integration Guides
Customer Journey
- Customer API Overview
- 1. Registration
- 2. Authentication
- 3. Verification
- 4. Access Control
- Profile Management
Tenants's Journey
- Group Management
Financial Operations
- Beneficiary Management
Wallet & Payments
- Wallet API
- Wallet API
- Entry Points
- POSTCreate Order
- POSTApprove Single Transfer Request Order
- POSTDecline Single Transfer Request Order
- POSTCancel Single Transfer Request Order
- POSTGet Wallets By Customer ID
- POSTGet Asset Transactions
- POSTGet Overall Transactions
- POSTGet Transaction History By Customer Type
- POSTCreate Customer
- POSTGet To Customer Single Transfer Requests
- POSTGet From Customer Single Transfer Requests
- POSTGet Order Detail
- POSTGet Nostro Wallet Balance
- POSTApprove Pending Withdrawal Order
- POSTReject Pending Withdrawal Order
- POSTGet Pending Withdrawal Orders
- POSTGet Customer Linked Assets
- POSTGet Pending Sanction Check Orders
- POSTUpdate Transaction Monitoring Status
- POSTGet Monitored Transactions
- POSTGet Monitored Transaction Detail
- POSTGet Monitored Transaction Rejection Reasons
- POST
Administration
- Configuration
- Billing
Get To Customer Single Transfer Requests
POST
/
GetToCustomerSingleTransferRequests
Copy
curl --request POST \
--url https://gateway.finhub.cloud/wallet/2.0.0/GetToCustomerSingleTransferRequests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'consumerId: <consumerid>' \
--header 'organizationId: <organizationid>' \
--header 'tenantId: <tenantid>' \
--data '{
"walletAddress": {
"service": "<string>",
"product": "<string>",
"businessArea": "<string>",
"lineOfBusiness": "<string>",
"consumerId": "<string>",
"organizationId": "<string>"
}
}'
Copy
{
"orders": [
{
"id": "<string>",
"status": "<string>",
"context": {
"sender": {
"id": "<string>",
"tenant_id": "<string>",
"customer_id": "<string>",
"user_name": "<string>",
"customer_type": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"organization_id": "<string>",
"company_name": "<string>"
},
"counter_party": {
"id": "<string>",
"tenant_id": "<string>",
"customer_id": "<string>",
"customer_type": "<string>",
"short_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"company_name": "<string>",
"status": "<string>",
"organization_id": "<string>",
"allow_save": true
},
"beneficiary": {
"party_type": "<string>",
"beneficiary_id": "<string>",
"status": "<string>",
"currency": "<string>",
"iban": "<string>",
"organization_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"address": "<string>",
"country": "<string>",
"email": "<string>",
"phone_number": "<string>",
"user_name": "<string>",
"short_name": "<string>",
"company_name": "<string>",
"pep_check_result": "<string>",
"pep_checked_on": "<string>",
"pep_confirmed_on": "<string>"
},
"note": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>",
"created_by": "<string>",
"order_type": "<string>",
"currency": "<string>",
"amount": {
"balance_value": "<string>",
"asset_sub_unit_short_name": "<string>"
},
"from_customer_id": "<string>",
"to_customer_id": "<string>"
}
]
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
Response
201
application/json
Created
The response is of type object
.
Copy
curl --request POST \
--url https://gateway.finhub.cloud/wallet/2.0.0/GetToCustomerSingleTransferRequests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'consumerId: <consumerid>' \
--header 'organizationId: <organizationid>' \
--header 'tenantId: <tenantid>' \
--data '{
"walletAddress": {
"service": "<string>",
"product": "<string>",
"businessArea": "<string>",
"lineOfBusiness": "<string>",
"consumerId": "<string>",
"organizationId": "<string>"
}
}'
Copy
{
"orders": [
{
"id": "<string>",
"status": "<string>",
"context": {
"sender": {
"id": "<string>",
"tenant_id": "<string>",
"customer_id": "<string>",
"user_name": "<string>",
"customer_type": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"organization_id": "<string>",
"company_name": "<string>"
},
"counter_party": {
"id": "<string>",
"tenant_id": "<string>",
"customer_id": "<string>",
"customer_type": "<string>",
"short_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"company_name": "<string>",
"status": "<string>",
"organization_id": "<string>",
"allow_save": true
},
"beneficiary": {
"party_type": "<string>",
"beneficiary_id": "<string>",
"status": "<string>",
"currency": "<string>",
"iban": "<string>",
"organization_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"address": "<string>",
"country": "<string>",
"email": "<string>",
"phone_number": "<string>",
"user_name": "<string>",
"short_name": "<string>",
"company_name": "<string>",
"pep_check_result": "<string>",
"pep_checked_on": "<string>",
"pep_confirmed_on": "<string>"
},
"note": "<string>"
},
"created_at": "<string>",
"updated_at": "<string>",
"created_by": "<string>",
"order_type": "<string>",
"currency": "<string>",
"amount": {
"balance_value": "<string>",
"asset_sub_unit_short_name": "<string>"
},
"from_customer_id": "<string>",
"to_customer_id": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.