Customer Self-Service Portal

Clearer API Output

Currently when we Activate or Suspend a check via the api we get the following response:

HTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
  "code": 0,
  "message": "success",
}
It would be nice to be able to get the check name in the response so we know which ones are successful and which ones fail, something like this:

HTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
  "code": 0,
"name": "Website Name"
 
"message": "success", }