Add Members
Testing
POST
/calendars/{calendarId}/members
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.aladia.io/v2/calendars/663a2c5effae959147ee2981/members' \
--header 'apikey: ' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"profileId": "66e19776c386d04f46720264",
"role": "Scheduler"
},
{
"profileId": "66e19785c386d04f4672028e",
"role": "Organizer"
}
]'
Response Response Example
201 - Success
[
{
"id": "66fbeec90f69312fc046417c",
"user": {
"id": "66fbbb6f0a74b0dc6c8a33a0",
"type": "profile"
},
"role": "Scheduler",
"calendarId": "663a2c5effae959147ee2981",
"invited": false,
"createdAt": "Tue Oct 01 2024 15:44:57 GMT+0300 (East Africa Time)",
"updatedAt": "Tue Oct 01 2024 15:44:57 GMT+0300 (East Africa Time)"
},
{
"id": "66fbeec90f69312fc046417d",
"user": {
"id": "66fbbb6f0a74b0dc6c8a33a0",
"type": "profile"
},
"role": "Organizer",
"calendarId": "663a2c5effae959147ee2981",
"invited": false,
"createdAt": "Tue Oct 01 2024 15:44:57 GMT+0300 (East Africa Time)",
"updatedAt": "Tue Oct 01 2024 15:44:57 GMT+0300 (East Africa Time)"
}
]
Request
Path Params
calendarId
stringÂ
required
Example:
663a2c5effae959147ee2981
Header Params
apikey
stringÂ
optional
Example:
{{apikey}}
Body Params application/json
Responses
Modified at 2025-04-09 12:47:33