Download OpenAPI specification:Download
API documentation for the matrix reminder and calendar bot. Inprint & Privacy Policy
TOKEN="my secure token" curl https://your-bot-domain.tld/core/channels -X GET -H "Authorization: ${TOKEN}"
{- "data": [
- {
- "createdAt": "string",
- "dailyReminder": "string",
- "description": "string",
- "id": 0
}
], - "status": "success"
}
List all matrix rooms acting as an input for the given channel.
id required | string Channel ID |
TOKEN="my secure token" curl https://your-bot-domain.tld/matrix/channels/example-string/inputs/rooms -X GET -H "Authorization: ${TOKEN}"
{- "data": [
- {
- "created_at": "string",
- "id": 0,
- "room_id": "string",
- "users": [
- {
- "blocked": true,
- "id": "string"
}
]
}
], - "status": "success"
}
List all matrix rooms acting as an output for the given channel.
id required | string Channel ID |
TOKEN="my secure token" curl https://your-bot-domain.tld/matrix/channels/example-string/outputs/rooms -X GET -H "Authorization: ${TOKEN}"
{- "data": [
- {
- "created_at": "string",
- "id": 0,
- "room_id": "string",
- "users": [
- {
- "blocked": true,
- "id": "string"
}
]
}
], - "status": "success"
}