Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/uzaxirr/gcal


https://github.com/uzaxirr/gcal

Last synced: 2 days ago
JSON representation

Awesome Lists containing this project

README

        

## Create an Event
Screenshot 2024-02-07 at 4 05 44 PM

### cURL
````
curl --location 'http://127.0.0.1:8000/events/' \
--header 'Content-Type: application/json' \
--data '{
"title": "Meeting",
"createdBy": 1,
"invites": [2],
"startTime": "2024-02-07T10:00:00Z",
"endTime": "2024-02-07T11:00:00Z",
"remindBefore": 15
}
'
````
## List All the events of a Given User
Screenshot 2024-02-07 at 4 07 38 PM

### cURL
````
curl --location 'http://127.0.0.1:8000/events/user/1/'
````

## Get details of a Given event
Screenshot 2024-02-07 at 4 08 34 PM

### cURL
````
curl --location 'http://127.0.0.1:8000/events/1/'
````