# Return suspended cPanel accounts and information This function lists suspended accounts on the server. Endpoint: GET /listsuspended Version: 11.134.0.5 Security: BasicAuth ## Response 200 fields (application/json): - `data` (object) - `data.account` (array) A list of objects containing suspended account data. - `data.account.is_locked` (integer) Whether the account is locked. * - Locked. * - Not locked. Enum: 0, 1 - `data.account.owner` (string) The cPanel account's owner. - - A reseller's username. - The account's username. Example: "root" - `data.account.reason` (string) The reason why the account is suspended, if one exists. Example: "Suspended for nonpayment." - `data.account.time` (string) The current date and time in human-readable format, where: * - represents the day of the week as a three-letter abbreviation. * - represents the month's three-letter abbreviation. * - represents the date. * - represents the hour. * - represents the minute. * - represents the second. * - represents the year. Example: "Thu Nov 18 10:34:34 2014" - `data.account.unixtime` (integer) The current date and time. Example: 1416306874 - `data.account.user` (string) The cPanel account's username. Example: "username" - `metadata` (object) - `metadata.command` (string) The method name called. Example: "listsuspended" - `metadata.reason` (string) The reason the API function failed when the field is 0. This field may display a success message when a function succeeds. Example: "OK" - `metadata.result` (integer) * - Success * - Failed: Check the reason field for more details. Enum: 0, 1 - `metadata.version` (integer) The version of the API function. Example: 1