Integration Guides
Customer Journey
- Customer API Overview
- Authentication
API 2.x Reference
- Authorization
- Settings Controller
- IP Controller
- Two-Factor Authentication
- User Access - Password
- Session Controller
- Tenant
- Customers B2X
- Wallet
- Transfer Order
Get Allowed Operations
Retrieve allowed wallet transfer operations
GET
/
api
/
v2.1
/
wallet-transfers
/
allowed-operations
Copy
curl --request GET \
--url https://sandbox.finhub.cloud/api/v2.1/wallet-transfers/allowed-operations \
--header 'X-Forwarded-For: <x-forwarded-for>'
Copy
{
"networks": [
{
"network": {
"networkId": "<string>",
"code": "<string>",
"name": "<string>",
"description": "<string>"
},
"operations": [
{
"operationDescription": {
"operationType": "BUY",
"operationScope": "INTERNAL",
"name": "<string>",
"description": "<string>",
"enabled": true
},
"source": {
"walletAddress": "<string>",
"walletPurpose": "<string>",
"operationScope": "INTERNAL",
"serviceDefinitions": {},
"network": {
"networkId": "<string>",
"code": "<string>",
"name": "<string>",
"description": "<string>"
},
"asset": {
"assetId": "<string>",
"type": "<string>",
"currency": "<string>",
"balance": 123,
"scale": 123,
"networkAddress": {
"addressId": "<string>",
"address": "<string>",
"type": "<string>",
"primary": true
}
}
},
"destination": {
"walletAddress": "<string>",
"walletPurpose": "<string>",
"operationScope": "INTERNAL",
"serviceDefinitions": {},
"network": {
"networkId": "<string>",
"code": "<string>",
"name": "<string>",
"description": "<string>"
},
"asset": {
"assetId": "<string>",
"type": "<string>",
"currency": "<string>",
"balance": 123,
"scale": 123,
"networkAddress": {
"addressId": "<string>",
"address": "<string>",
"type": "<string>",
"primary": true
}
}
},
"details": "<string>"
}
]
}
]
}
Headers
Forwarded client IP address
Client user agent information
Tenant identifier for multi-tenant operations
Query Parameters
Business area
Capability type
Customer identifier
Line of business context
Organization identifier
Service type
Response
200
application/json
Allowed operations retrieved successfully
Network operations with detailed structure of networks and their allowed operations
Copy
curl --request GET \
--url https://sandbox.finhub.cloud/api/v2.1/wallet-transfers/allowed-operations \
--header 'X-Forwarded-For: <x-forwarded-for>'
Copy
{
"networks": [
{
"network": {
"networkId": "<string>",
"code": "<string>",
"name": "<string>",
"description": "<string>"
},
"operations": [
{
"operationDescription": {
"operationType": "BUY",
"operationScope": "INTERNAL",
"name": "<string>",
"description": "<string>",
"enabled": true
},
"source": {
"walletAddress": "<string>",
"walletPurpose": "<string>",
"operationScope": "INTERNAL",
"serviceDefinitions": {},
"network": {
"networkId": "<string>",
"code": "<string>",
"name": "<string>",
"description": "<string>"
},
"asset": {
"assetId": "<string>",
"type": "<string>",
"currency": "<string>",
"balance": 123,
"scale": 123,
"networkAddress": {
"addressId": "<string>",
"address": "<string>",
"type": "<string>",
"primary": true
}
}
},
"destination": {
"walletAddress": "<string>",
"walletPurpose": "<string>",
"operationScope": "INTERNAL",
"serviceDefinitions": {},
"network": {
"networkId": "<string>",
"code": "<string>",
"name": "<string>",
"description": "<string>"
},
"asset": {
"assetId": "<string>",
"type": "<string>",
"currency": "<string>",
"balance": 123,
"scale": 123,
"networkAddress": {
"addressId": "<string>",
"address": "<string>",
"type": "<string>",
"primary": true
}
}
},
"details": "<string>"
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.