Request
Body Params application/json
{
"alert": {
"ticker": "string",
"price": 0,
"type": "PRICE_ABOVE"
}
}
Request Code Samples
curl --location --request PUT 'http://localhost:8100/alerts/alerts/' \
--header 'Content-Type: application/json' \
--data '{
"alert": {
"ticker": "string",
"price": 0,
"type": "PRICE_ABOVE"
}
}'
Responses
{
"code": 0,
"result": {
"id": "string",
"uid": "string",
"ticker": "string",
"price": 0,
"type": "PRICE_ABOVE",
"createdAt": "string",
"active": true,
"lastSeenAt": "string"
},
"error": "string"
}
Modified at 2026-06-24 12:21:25