{
"cal_id": "string",
"year": 0,
"month": 0,
"day": 0
}
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
}'
{
"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
}
}