Create an asset transfer

POST/api/portfolio/transactions/asset-transfer

Request body

Body shape: Portfolio_CreateAssetTransferRequest (required)

Responses

200`AssetTransferResource`
{}
403Forbidden.Error
422Validation error.Error
curl -X POST https://your-url.com/kong/core/api/gateway/api/portfolio/transactions/asset-transfer\
  -H "Authorization: Bearer $DELIO_API_KEY"\
  -H "Content-Type: application/json"\
  -d '{
  "transferor_id": 1,
  "transferee_id": "transferee_id",
  "asset_id": 1,
  "commitment_to_transfer": 1,
  "commitment_percentage": 1,
  "description": "description"
}'