Record a fee against an asset

POST/api/portfolio/transactions/fees

Request body

Body shape: Portfolio_CreateFeeRequest (required)

Responses

200
{}
403Forbidden.Error
422Validation error.Error
curl -X POST https://your-url.com/kong/core/api/gateway/api/portfolio/transactions/fees\
  -H "Authorization: Bearer $DELIO_API_KEY"\
  -H "Content-Type: application/json"\
  -d '{
  "type": "one_off_fee",
  "asset_id": 1,
  "invoice_date": "invoice_date",
  "settlement_date": "settlement_date",
  "amount": 1,
  "description": "description",
  "investors": []
}'