This is the official NPM Package of Discloud API. Este é o pacote NPM oficial para a API da Discloud.
Contribuintes são bem-vindos. ❤️ Contributors are welcome. ❤️
...
const api = new DiscloudAPI('Your Token')
- userStatus() ⇒
Promise.<(UserStatus|void)>
Get status of user.
- get(bot_id) ⇒
Promise.<(GetBot|void)>
Get data of a bot.
- logs(bot_id) ⇒
Promise.<(BotLogs|void)>
Get log of a bot.
- restart(bot_id) ⇒
Promise.<(BotRestart|void)>
Restart the bot.
Get status of user.
Kind: global function Author: GardZock
Example
...
const data = await <(DiscloudAPI)>.userStatus()
//Returns the user data.
Get data of a bot.
Kind: global function Author: GardZock
Param | Type | Description |
---|---|---|
bot_id | string |
ID of Bot |
Example
...
const bot = await <(DiscloudAPI)>.bot.get('bot id')
//Returns the bot data.
Get log of a bot.
Kind: global function Author: GardZock
Param | Type | Description |
---|---|---|
bot_id | string |
ID of Bot |
Example
...
const logs = await <(DiscloudAPI)>.bot.logs('bot id')
//Returns the logs of bot.
Restart the bot.
Kind: global function Author: GardZock
Param | Type | Description |
---|---|---|
bot_id | string |
ID of Bot |
Example
...
const restart = await <(DiscloudAPI)>.bot.restart('bot id')
//Returns a message if sucess, if not return a error.