19 lines
498 B
HTTP
19 lines
498 B
HTTP
# Test your FastAPI endpoints
|
|
|
|
GET http://127.0.0.1:8000/generer/icalendar
|
|
Content-Type: application/json
|
|
Accept: text/calendar
|
|
Accept-Encoding: gzip, deflate
|
|
|
|
{
|
|
"summary": "test",
|
|
"description": "test",
|
|
"location": "test",
|
|
"start": "2024-01-01T00:00:00",
|
|
"end": "2024-01-01T01:00:00",
|
|
"recurrence": "RRULE:FREQ=DAILY;COUNT=1",
|
|
"uid": "test",
|
|
"attendees": ["guest1@jevalide.ca", "guest2@jevalide.ca"],
|
|
"organizer": "francois@jevalide.ca",
|
|
"url": "https://jevalide.ca/reunion"
|
|
}
|