Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uzaxirr/gcal
https://github.com/uzaxirr/gcal
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/uzaxirr/gcal
- Owner: uzaxirr
- Created: 2024-02-07T10:14:43.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-02-07T10:39:17.000Z (9 months ago)
- Last Synced: 2024-02-07T11:52:29.652Z (9 months ago)
- Language: Python
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Create an Event
### 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### cURL
````
curl --location 'http://127.0.0.1:8000/events/user/1/'
````## Get details of a Given event
### cURL
````
curl --location 'http://127.0.0.1:8000/events/1/'
````