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
Create Order
POST
/
CreateOrder
curl --request POST \
--url https://gateway.finhub.cloud/wallet/2.0.0/CreateOrder \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"orderOperationType": "<string>",
"sourceEntity": {
"customerId": "<string>",
"walletId": "<string>",
"assetId": "<string>",
"assetSubUnitId": "<string>",
"service": "<string>",
"product": "<string>",
"businessArea": "<string>",
"lineOfBusiness": "<string>"
},
"destinationEntity": {
"customerId": "<string>",
"walletId": "<string>",
"assetId": "<string>",
"assetSubUnitId": "<string>",
"service": "<string>",
"product": "<string>",
"businessArea": "<string>",
"lineOfBusiness": "<string>"
},
"orderAmount": {
"amount": "<string>"
},
"orderContext": {
"sender": {
"id": "<string>",
"tenantId": "<string>",
"customerId": "<string>",
"userName": "<string>",
"customerType": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"organizationId": "<string>",
"companyName": "<string>"
},
"counterParty": {
"id": "<string>",
"tenantId": "<string>",
"customerId": "<string>",
"customerType": "<string>",
"shortName": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"phoneNumber": "<string>",
"companyName": "<string>",
"status": "<string>",
"organizationId": "<string>",
"allowSave": true
},
"beneficiary": {
"partyType": "INDIVIDUAL_CUSTOMER",
"beneficiaryId": "<string>",
"status": "<string>",
"currency": "<string>",
"iban": "<string>",
"organizationId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"address": "<string>",
"country": "<string>",
"email": "<string>",
"phoneNumber": "<string>",
"userName": "<string>",
"shortName": "<string>",
"companyName": "<string>",
"pepCheckResult": "<string>",
"allowSave": true
},
"note": "<string>",
"notifyRecipient": true,
"manageRequestPageUrl": "<string>",
"accountTransactionPageUrl": "<string>"
}
}'
{
"order_id": "<string>"
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Headers
Body
application/json
Response
201
application/json
Created
The response is of type object
.
curl --request POST \
--url https://gateway.finhub.cloud/wallet/2.0.0/CreateOrder \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"orderOperationType": "<string>",
"sourceEntity": {
"customerId": "<string>",
"walletId": "<string>",
"assetId": "<string>",
"assetSubUnitId": "<string>",
"service": "<string>",
"product": "<string>",
"businessArea": "<string>",
"lineOfBusiness": "<string>"
},
"destinationEntity": {
"customerId": "<string>",
"walletId": "<string>",
"assetId": "<string>",
"assetSubUnitId": "<string>",
"service": "<string>",
"product": "<string>",
"businessArea": "<string>",
"lineOfBusiness": "<string>"
},
"orderAmount": {
"amount": "<string>"
},
"orderContext": {
"sender": {
"id": "<string>",
"tenantId": "<string>",
"customerId": "<string>",
"userName": "<string>",
"customerType": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"organizationId": "<string>",
"companyName": "<string>"
},
"counterParty": {
"id": "<string>",
"tenantId": "<string>",
"customerId": "<string>",
"customerType": "<string>",
"shortName": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"phoneNumber": "<string>",
"companyName": "<string>",
"status": "<string>",
"organizationId": "<string>",
"allowSave": true
},
"beneficiary": {
"partyType": "INDIVIDUAL_CUSTOMER",
"beneficiaryId": "<string>",
"status": "<string>",
"currency": "<string>",
"iban": "<string>",
"organizationId": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"address": "<string>",
"country": "<string>",
"email": "<string>",
"phoneNumber": "<string>",
"userName": "<string>",
"shortName": "<string>",
"companyName": "<string>",
"pepCheckResult": "<string>",
"allowSave": true
},
"note": "<string>",
"notifyRecipient": true,
"manageRequestPageUrl": "<string>",
"accountTransactionPageUrl": "<string>"
}
}'
{
"order_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.