Conference Scheduling Reservation APIs APIs for managing conferences
Welcome to the Scheduler API, a powerful tool that enables seamless integration for scheduling meetings and conferences within your applications.
This API empowers developers to incorporate advanced scheduling functionalities, automating the process and enhancing the user experience for meeting coordination.
post
http://api.sariska.io/ /api/v1/misc/generate-token apiKey string required Please pass apiKey tied to your sariska account
Example: iufwenufewifweifiuTbddhbdjhjfbjfjwfjwfj
exp string optional Pass exp claim of JWT token
Example: 24 hours
nbf string optional Pass nbf claim of JWT token
scope string optional Pass scope of token (messaging, media, sariska, or leave it blank)
Copy curl -L \
--request POST \
--url 'http://api.sariska.io//api/v1/misc/generate-token' \
--header 'Content-Type: application/json' \
--data '{
"apiKey": "iufwenufewifweifiuTbddhbdjhjfbjfjwfjwfj",
"user": {
"id": "ytyVgh",
"name": "Nick",
"email": "nick@gmail.com",
"avatar": "https://some-storage-location/nick.jpg",
"moderator": false
},
"exp": "24 hours",
"nbf": "",
"scope": ""
}'
get
http://api.sariska.io/ /api/v1/scheduler/conference
Copy curl -L \
--url 'http://api.sariska.io//api/v1/scheduler/conference' \
--header 'Authorization: YOUR_API_KEY'
Copy [
{
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}
]
get
http://api.sariska.io/ /api/v1/scheduler/conference/room/ {name}
Copy curl -L \
--url 'http://api.sariska.io//api/v1/scheduler/conference/room/{name}' \
--header 'Authorization: YOUR_API_KEY'
Copy {
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}
get
http://api.sariska.io/ /api/v1/scheduler/conference/ {id}
Copy curl -L \
--url 'http://api.sariska.io//api/v1/scheduler/conference/{id}' \
--header 'Authorization: YOUR_API_KEY'
Copy [
{
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}
]
get
http://api.sariska.io/ /api/v1/scheduler/reservation
Copy curl -L \
--url 'http://api.sariska.io//api/v1/scheduler/reservation' \
--header 'Authorization: YOUR_API_KEY'
Copy [
{
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}
]
post
http://api.sariska.io/ /api/v1/scheduler/reservation
mail_owner string required The email address of the conference owner.
Example: owner_user_id@sariska.io
name string required The name of the conference room.
Example: myroom123
duration string required The duration of the conference in minutes.
Example: 60
start_time string · date-time required The start time of the conference in ISO 8601 format.
Example: 2023-09-28T15:08
timezone string required The timezone of the conference.
Default: America/New York
Example: America/New York
pin string optional The PIN for accessing the conference (optional).
Example: 1234
Copy curl -L \
--request POST \
--url 'http://api.sariska.io//api/v1/scheduler/reservation' \
--header 'Authorization: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}'
Copy {
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}
get
http://api.sariska.io/ /api/v1/scheduler/reservation/room/ {name}
Copy curl -L \
--url 'http://api.sariska.io//api/v1/scheduler/reservation/room/{name}' \
--header 'Authorization: YOUR_API_KEY'
Copy {
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}
get
http://api.sariska.io/ /api/v1/scheduler/reservation/ {id}
Copy curl -L \
--url 'http://api.sariska.io//api/v1/scheduler/reservation/{id}' \
--header 'Authorization: YOUR_API_KEY'
Copy {
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}
delete
http://api.sariska.io/ /api/v1/scheduler/reservation/ {id}
Copy curl -L \
--request DELETE \
--url 'http://api.sariska.io//api/v1/scheduler/reservation/{id}' \
--header 'Authorization: YOUR_API_KEY'
Copy {
"mail_owner": "owner_user_id@sariska.io",
"name": "myroom123",
"duration": 60,
"start_time": "2023-09-28T15:08",
"timezone": "America/New York",
"pin": "1234"
}
For a full list of APIs, please visit: