Request
Body Params  application/json
{
    "cal_id": "string",
    "year": 0,
    "month": 0,
    "day": 0
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/calendar/event/list' \
--header 'Content-Type: application/json' \
--data-raw '{
    "cal_id": "string",
    "year": 0,
    "month": 0,
    "day": 0
}'
Responses
application/json {
    "error": {
        "code": "string",
        "message": "string"
    },
    "data": {
        "items": [
            {
                "cal_id": "string",
                "event_id": "string",
                "summary": "string",
                "description": "string",
                "creator_id": 0,
                "is_off": true,
                "start_at": "string",
                "end_at": "string",
                "created_at": 0,
                "updated_at": 0
            }
        ],
        "total": 0
    }
}
Modified at 2025-01-22 10:14:38