curl --request POST \
--url https://tars.loopscale.com/v1/markets/strategy/update \
--header 'Content-Type: application/json' \
--header 'User-Wallet: <user-wallet>' \
--data '
{
"strategy": "<string>",
"collateralTerms": {
"addCollateral": {},
"removeCollateral": {},
"updateCollateral": {},
"updateAssetAllocation": [
{
"assetIdentifier": "<string>",
"maxAllocationPct": "<string>"
}
]
},
"updateParams": {
"originationsEnabled": true,
"liquidityBuffer": 123,
"interestFee": 123,
"originationFee": 123,
"principalFee": 123,
"originationCap": 123,
"externalYieldSource": {
"newExternalYieldSource": 123
}
}
}
'