/

Don't worry, API works successfully.

The Deleter API is a RESTful API based on HTTP(s) requests and JSON responses.

Each response is a JSON object. The data requested is wrapped in the result tag. If you have a response, it will always be within the result field. We also include a success flag, an array of potential errors, and messages in the response.

An error object will contain an integer code field and a message

Success Response

{
  success: true,
  result: {
    shards: [
      {
        id: 1,
        ready: true,
        status: 0,
        ping: 182,
        channels: 271,
        guilds: 9,
        users: 522
      }
    ],
    totalGuilds: 9,
    totalChannels: 271,
    totalUsers: 522
  },
  messages: [],
  errors: []
}

Error Response

Last updated