What You Can Do
Visual Workflows
Build automation workflows using Make's visual workflow builder.
HTTP Module
Use Make's HTTP module to integrate with Chimoney's REST API.
Data Transformation
Transform data between apps using Make's data transformation tools.
Example Workflows
Auto-Create Wallet on Database Entry
When a new entry is added to your database, create an agent wallet.
Trigger: New Database Entry
→Action: Create Agent Wallet
How to Get Started
1
Create Scenario in Make
Create a new scenario in Make and add a trigger module.
2
Add HTTP Module
Add an HTTP Make a Request module and configure it for Chimoney API.
3
Configure API Key
Add your Chimoney API key to the Authorization header.
4
Run Scenario
Test and activate your scenario.
API Integration (Alternative)
If you prefer direct API integration instead of Make (Integromat), here's a quick example:
// Create agent wallet via API
const response = await fetch('https://api.chimoney.io/v0.2/wallets', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Make (Integromat)Agent',
dailyLimit: 100,
currency: 'USD'
})
});
const wallet = await response.json();
console.log('Agent wallet created:', wallet);