Goto Home
🌍 GET /misc/version
Description
- Returns the latest and minimum version details of android and ios
Response Body
{
"version": {
"android": {
"latestVersionString": "1.0.0",
"latestVersionCode": 2,
"minimumVersionString": "0.1-beta",
"minimumVersionCode": 1
},
"ios": {
"latestVersionString": "1.0.0",
"latestVersionCode": 1,
"minimumVersionString": "0.1-beta",
"minimumVersionCode": 1
}
}
}
🌍 POST /misc/scheduler
Description
- API for the schedule operations
- For a list of all schedule events and their payloads, visit Schedule Events
Request Body
{
event: ScheduleEvent,
data: Record<string, any>
}
Links
Goto Home