Delete Price Alert¶
Deletes an existing price alert for the current user.
DELETE
https://{some_domain}/price_alert/{id}
Authorization¶
All requests must include a JWT token:
Authorization: <JWT_TOKEN>
This endpoint is available only for a client user session. The server takes login from the JWT session.
Response¶
Success (200)¶
{
"structure": ["id"],
"rows": [
[101]
]
}
Error Responses¶
| Code | Error | Description |
|---|---|---|
| 400 | INVALID_DATA |
Validation failed |
| 400 | INVALID_LOGIN |
Session login is missing or invalid |
| 403 | PERMISSION_DENIED |
Alert belongs to another user |
| 404 | NOT_FOUND |
Alert not found |