Request
Body Params  application/json
{
    "incident_id": "string",
    "types": [
        "i_comm"
    ],
    "p": 0,
    "limit": 0,
    "asc": true
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/incident/feed' \
--header 'Content-Type: application/json' \
--data-raw '{
    "incident_id": "string",
    "types": [
        "i_comm"
    ],
    "p": 0,
    "limit": 0,
    "asc": true
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "created_at": 0,
                "creator_id": 0,
                "type": "i_comm",
                "detail": {
                    "comment": "string"
                }
            }
        ]
    }
}
Modified at 2025-01-22 10:14:38