Common Events
Testing
POST
/calendars/common-events
{
"calendarIds": [
"67249509c9197a8cc8c873f3"
],
"profileIds": [
"67249599c9197a8cc8c87455",
"673c3af47c84b35611fd7854"
]
}
profileIds: A list of profile IDs to filter events for specific users.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.aladia.io/v2/calendars/common-events?limit=50' \
--header 'apikey: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"calendarIds": [
"67249509c9197a8cc8c873f3"
],
"profileIds": [
"67249599c9197a8cc8c87455",
"673c3af47c84b35611fd7854"
]
}'
Response Response Example
201 - Success
{
"data": [
{
"id": "673c4298607bb1716d5c4e9d",
"calendarId": "67249509c9197a8cc8c873f3",
"name": "In the night check",
"dates": {
"startDate": "2025-12-01T13:45:00.000Z",
"endDate": "2025-12-01T15:45:00.000Z"
},
"isShared": false,
"guestNumber": 2,
"coHostNumber": 0,
"courseTeacherNumber": 0,
"courseAttendantNumber": 0,
"courseObserverNumber": 0,
"roomStatus": "pending",
"membersIds": [
"67249506c9197a8cc8c873e9"
],
"ownerProfilePicture": null,
"entityType": null
},
{
"id": "673c4298607bb1716d5c4ea0",
"calendarId": "67249509c9197a8cc8c873f3",
"name": "In the night check",
"dates": {
"startDate": "2025-12-02T13:45:00.000Z",
"endDate": "2025-12-02T15:45:00.000Z"
},
"isShared": false,
"guestNumber": 2,
"coHostNumber": 0,
"courseTeacherNumber": 0,
"courseAttendantNumber": 0,
"courseObserverNumber": 0,
"roomStatus": "pending",
"membersIds": [
"67249506c9197a8cc8c873e9"
],
"ownerProfilePicture": null,
"entityType": null
}
],
"cursor": {
"next": null,
"prev": null,
"totalItems": 2
}
}
Request
Query Params
limit
integerÂ
optional
Default:
50
Header Params
apikey
stringÂ
optional
Example:
{{apikey}}
Body Params application/json
Responses
Modified at 2025-03-03 09:29:57