List All Member
Testing
GET
/calendars/{calendarId}/events/{eventId}/members
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.aladia.io/v2/calendars/66df1b60c9b61c08ddb0d380/events/66f636885550f70db3874945/members?limit=50&next=&prev=&sortBy=&sortDirection=asc&query=' \
--header 'apikey: '
Response Response Example
200 - Success
{
"data": [
{
"fullName": "Tamirat Dereje",
"id": "66e19776c386d04f46720264",
"picture": null,
"role": "guest",
"online": false,
"email": "tamirat.dereje@aladia.io",
"invited": false,
"invitedAt": "Tue Oct 01 2024 11:54:04 GMT+0300 (East Africa Time)",
"lastActivity": "Wed Sep 11 2024 16:13:31 GMT+0300 (East Africa Time)",
"invitationStatus": null
},
{
"fullName": "Daniel Dereje",
"id": "66e19785c386d04f4672028e",
"picture": null,
"role": "co-host",
"online": false,
"email": "daniel.dereje@aladia.io",
"invited": false,
"invitedAt": "Tue Oct 01 2024 11:55:22 GMT+0300 (East Africa Time)",
"lastActivity": "Wed Sep 11 2024 16:13:43 GMT+0300 (East Africa Time)",
"invitationStatus": null
}
],
"cursor": {
"next": null,
"prev": null,
"totalItems": 2
}
}
Request
Path Params
calendarId
stringÂ
required
Example:
66df1b60c9b61c08ddb0d380
eventId
stringÂ
required
Example:
66f636885550f70db3874945
Query Params
limit
integerÂ
optional
Default:
50
next
stringÂ
optional
prev
stringÂ
optional
sortBy
stringÂ
optional
sortDirection
enum<string>Â
optional
Allowed values:
ascdesc
Default:
asc
query
stringÂ
optional
Header Params
apikey
stringÂ
optional
Example:
{{apikey}}
Responses
Modified at 2025-04-12 09:33:26