43
loading...
This website collects cookies to deliver better user experience
events-i-signed-up-for
. Instead you want things like that to show up in an hierarchy of paths like events/search?registered=true
.https://api.mydomain.com/events/v1/events/
https://api.mydomain.com/events/v1/locations/
[
{
"id": 123
},
{
"id": 234
}
]
https://api.mydomain.com/events/v1/events/{eventId}/
https://api.mydomain.com/events/v1/events/{eventId}/locations
https://api.mydomain.com/events/v1/events/search?date[gt]=2021-07-01&status=CANCELLED
https://api.mydomain.com/events/v1/events/search?dateAndTime.duration.length[gt]=1&dateAndTime.duration.unit=HOUR
{
"status": "ACTIVE",
"public": true,
"id": 1234556,
"title": "Weird Animal Facts",
"description": "Tune in to learn about how horses make the neighing sound",
"dateAndTime": {
"date": "2021-06-30",
"time": "08:00:00",
"timeZone": "GMT",
"duration": {
"length":"1",
"unit":"HOUR",
}
},
"locations": [
{
"type": "ONLINE",
"url": "https://ivonneroberts.com/meetingURL"
},
{
"type": "VENUE",
"address": {
"streetAddress1": "1 5th Avenue",
"streetAddress2": null,
"city": "New York",
"state": "NY",
"zip": 10001
}
}
],
"cost": {
"currency": "USD",
"price": 20,
"unit": "PER_PERSON"
}
}
43