Download OpenAPI specification:
Minimal OpenAPI 3.0 spec documenting a few Chimoney endpoints used in the project. Notes:
Sends a Chimoney payout to the specified email or phone number.
required | Array of objects non-empty |
{- "chimoneys": [
- {
- "email": "recipient@example.com",
- "valueInUSD": 10
}
]
}{- "status": "success",
- "count": 1,
- "data": [
- {
- "issueID": "iss_abc123",
- "email": "recipient@example.com",
- "valueInUSD": 10
}
]
}Redeems a Chimoney transaction into a gift card.
| email required | string <email> |
| countryCode required | string ISO 2-letter country code |
| productId required | string Gift card product/key |
| chiRef required | string Chimoney transaction reference (issueID) |
{- "email": "recipient@example.com",
- "countryCode": "US",
- "productId": "amazon",
- "chiRef": "iss_abc123"
}{- "status": "success",
- "redemptionRef": "redeem_123",
- "productId": "amazon",
- "countryCode": "US"
}Retrieves a list of all multicurrency wallets associated with an account
{- "status": "success",
- "wallets": [
- {
- "walletID": "wallet_abc123",
- "currency": "USD",
- "balance": 100.5
}, - {
- "walletID": "wallet_def456",
- "currency": "EUR",
- "balance": 75
}
]
}