Transfer between cash accounts

POST/api/portfolio/cash-accounts/transaction/transfer

Request body

Body shape: Portfolio_CashAccountTransferRequest (required)

Responses

200`ResourceCollection`
{}
403Forbidden.Error
422Validation error.Error
curl -X POST https://your-url.com/kong/core/api/gateway/api/portfolio/cash-accounts/transaction/transfer\
  -H "Authorization: Bearer $DELIO_API_KEY"\
  -H "Content-Type: application/json"\
  -d '{
  "investor_id": 1,
  "from_cash_account_id": 1,
  "to_cash_account_id": 1,
  "amount": 1,
  "exchange_rate": 1,
  "date": "date"
}'