Request
Send your HTTP requests with an Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password Example:Authorization: Basic *****************
Body Params application/json
{
"portfolioId": "string",
"itemId": "string",
"tradeId": "string"
}
Request Code Samples
curl --location --request DELETE 'http://localhost:8100/portfolios/portfolios//items//trades/' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
"portfolioId": "string",
"itemId": "string",
"tradeId": "string"
}'
Responses
{
"code": 0,
"result": true,
"error": "string"
}
Modified at 2026-01-25 17:00:46