Request
Body Params  application/json
{
    "alert_id": "string",
    "p": 0,
    "limit": 0,
    "asc": true,
    "types": [
        "a_new"
    ]
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/alert/feed' \
--header 'Content-Type: application/json' \
--data-raw '{
    "alert_id": "string",
    "p": 0,
    "limit": 0,
    "asc": true,
    "types": [
        "a_new"
    ]
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "created_at": 0,
                "creator_id": 0,
                "type": "a_new",
                "detail": {
                    "comment": "string"
                }
            }
        ]
    }
}
Modified at 2025-04-27 09:51:47