Response Types

Response Format — The API currently supports responses in JSON only.
Each response contains three fields:

  • status"success" if the request was processed successfully, "error" if it failed.

  • message — Contains an error message when status is "error".

  • data — Contains the returned data in JSON format.


    Success Message:

{
    "status": "success",
    "message": "IP Address to whitelist successfully",
}


Error Message:

{
    "status": "error",
    "message": "Please enter IP Address in valid format",
}