Matrix Reminder and Calendar Bot (RemindMe) (2.1.1)

Download OpenAPI specification:Download

API documentation for the matrix reminder and calendar bot. Inprint & Privacy Policy

Channels

List all channels

List all channels

Authorizations:
APIKeyAuthentication

Responses

Request samples

TOKEN="my secure token"
curl https://your-bot-domain.tld/core/channels -X GET -H "Authorization: ${TOKEN}"

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "status": "success"
}

Calendars

Get calendar (iCal)

Get calendar as iCal

path Parameters
id
required
integer

iCal output ID

query Parameters
token
required
string

authentication token

Responses

Request samples

curl https://your-bot-domain.tld/ical/1234?token=example-string -X GET

Matrix

List all Input Rooms

List all matrix rooms acting as an input for the given channel.

Authorizations:
APIKeyAuthentication
path Parameters
id
required
string

Channel ID

Responses

Request samples

TOKEN="my secure token"
curl https://your-bot-domain.tld/matrix/channels/example-string/inputs/rooms -X GET -H "Authorization: ${TOKEN}"

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "status": "success"
}

List all Output Rooms

List all matrix rooms acting as an output for the given channel.

Authorizations:
APIKeyAuthentication
path Parameters
id
required
string

Channel ID

Responses

Request samples

TOKEN="my secure token"
curl https://your-bot-domain.tld/matrix/channels/example-string/outputs/rooms -X GET -H "Authorization: ${TOKEN}"

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "status": "success"
}