Status
Status Method - Main
POST
https://modiplex.com/api/status
Returns Modiplex's status
{
status: 'M1',
description: 'All systems online'
}
NodeJS example
const axios = require('axios')
axios.post('https://modiplex.com/api/status')
.then(res => {
console.log(res.data);
})
.catch(error => {
console.error(error)
})
Last updated
Was this helpful?