Skip to content

Events

8 endpoints

System events and event history

POST /accounts/{id}/availability

Check participant availability

Calculate availability slots for the specified participants.

Parameters

id string

In path Required

Unique account identifier assigned by Riposte. You may also provide the custom user ID set during authentication; the API resolves it to the canonical account.

Request body

Required • application/json

Request body (application/json)

post-/accounts/{id}/availability-request-body-application/json

object<{ participants, startTime, endTime, … }>
Field Type Description Values
endTime Required string
intervalMinutes Optional number
participants Required array<string>
min items 1
startTime Required string
timeZone Optional string

Returns

Default Response

Content type: application/json

Status: 200

Example request
                
                    
                    curl -X POST "http://localhost:8080/accounts/{id}/availability" \
                  
                    
                      -H "Content-Type: application/json"
                  
              
Example response 200

No example response available.


POST /accounts/{id}/calendars/{calendarId}/events

Create calendar event

Create a new event in the specified calendar.

Parameters

id string

In path Required

Unique account identifier assigned by Riposte. You may also provide the custom user ID set during authentication; the API resolves it to the canonical account.

calendarId string

In path Required

Request body

Required • application/json

Request body (application/json)

post-/accounts/{id}/calendars/{calendarId}/events-request-body-application/json

object<{ summary, description, location, … }>
Field Type Description Values
attendees Optional array<object<{ email, displayName, optional }>>
description Optional string
end Required object<{ dateTime, date, timeZone }>
location Optional string
start Required object<{ dateTime, date, timeZone }>
summary Required string

Returns

Default Response

Content type: application/json

Status: 201

Example request
                
                    
                    curl -X POST "http://localhost:8080/accounts/{id}/calendars/{calendarId}/events" \
                  
                    
                      -H "Content-Type: application/json"
                  
              
Example response 201

No example response available.


DELETE /accounts/{id}/calendars/{calendarId}/events/{eventId}

Delete calendar event

Delete an event from the specified calendar.

Parameters

id string

In path Required

Unique account identifier assigned by Riposte. You may also provide the custom user ID set during authentication; the API resolves it to the canonical account.

calendarId string

In path Required

eventId string

In path Required

Returns

Default Response

Status: 204

Example request
                
                    
                    curl -X DELETE "http://localhost:8080/accounts/{id}/calendars/{calendarId}/events/{eventId}"
                  
              
Example response 204

No example response available.


PUT /accounts/{id}/calendars/{calendarId}/events/{eventId}

Update calendar event

Update an existing event in the specified calendar.

Parameters

id string

In path Required

Unique account identifier assigned by Riposte. You may also provide the custom user ID set during authentication; the API resolves it to the canonical account.

calendarId string

In path Required

eventId string

In path Required

Request body

Optional • application/json

Request body (application/json)

put-/accounts/{id}/calendars/{calendarId}/events/{eventId}-request-body-application/json

object<{ summary, description, location, … }>
Field Type Description Values
attendees Optional array<object<{ email, displayName, optional }>>
description Optional string
end Optional object<{ dateTime, date, timeZone }>
location Optional string
start Optional object<{ dateTime, date, timeZone }>
summary Optional string

Returns

Default Response

Content type: application/json

Status: 200

Example request
                
                    
                    curl -X PUT "http://localhost:8080/accounts/{id}/calendars/{calendarId}/events/{eventId}" \
                  
                    
                      -H "Content-Type: application/json"
                  
              
Example response 200

No example response available.


POST /accounts/{id}/calendars/{calendarId}/events/{eventId}/rsvp

Update RSVP for an event

Set the RSVP status for the authenticated attendee on an event.

Parameters

id string

In path Required

Unique account identifier assigned by Riposte. You may also provide the custom user ID set during authentication; the API resolves it to the canonical account.

calendarId string

In path Required

eventId string

In path Required

Request body

Required • application/json

Request body (application/json)

post-/accounts/{id}/calendars/{calendarId}/events/{eventId}/rsvp-request-body-application/json

object<{ responderEmail, response, comment, … }>
Field Type Description Values
comment Optional string
notifyAttendees Optional boolean
responderEmail Optional string
response Required string
accepteddeclinedtentative

Returns

Default Response

Content type: application/json

Status: 200

Example request
                
                    
                    curl -X POST "http://localhost:8080/accounts/{id}/calendars/{calendarId}/events/{eventId}/rsvp" \
                  
                    
                      -H "Content-Type: application/json"
                  
              
Example response 200

No example response available.


POST /accounts/{id}/free-busy

Get free/busy information

Return busy intervals for the specified calendars.

Parameters

id string

In path Required

Unique account identifier assigned by Riposte. You may also provide the custom user ID set during authentication; the API resolves it to the canonical account.

Request body

Required • application/json

Request body (application/json)

post-/accounts/{id}/free-busy-request-body-application/json

object<{ calendars, startTime, endTime, … }>
Field Type Description Values
calendars Required array<string>
min items 1
endTime Required string
startTime Required string
timeZone Optional string

Returns

Default Response

Content type: application/json

Status: 200

Example request
                
                    
                    curl -X POST "http://localhost:8080/accounts/{id}/free-busy" \
                  
                    
                      -H "Content-Type: application/json"
                  
              
Example response 200

No example response available.


GET /accounts/{id}/rooms

List meeting rooms/resources

Retrieve available room resources for scheduling.

Parameters

id string

In path Required

Unique account identifier assigned by Riposte. You may also provide the custom user ID set during authentication; the API resolves it to the canonical account.

Additional parameters
limit string

In query Optional

buildingId string

In query Optional

pageToken string

In query Optional

Returns

Default Response

Content type: application/json

Status: 200

Example request
                
                    
                    curl -X GET "http://localhost:8080/accounts/{id}/rooms"
                  
              
Example response 200

No example response available.


GET /events

Get event history

Retrieve the history of system events including account connections, message events, and sync operations.

Parameters

limit string

In query Optional

Returns

Default Response

Content type: application/json

Status: 200

Example request
                
                    
                    curl -X GET "http://localhost:8080/events"
                  
              
Example response 200

No example response available.