Description

This method returns the list of Domain names.


Exceptions

This method does not throw any GenRocket exceptions.


Runtime Method Signature

Use this method signature when directly accessing the GenRocket binary runtime.


public List<String> domains()


REST/Socket Payload Request

Use this API JSON request payload when making an API call to the GenRocket REST or Socket Engine.


{
  "interfaceType": "Manual",
  "methodName": "domains",
  "parameters": {
  }
}


REST/Socket Payload Successful Payload Response

The API JSON response payload may return a list of zero or more Domain names.


{
  "responseType": "OK",
  "data": [
    {
      "domainName": ""
    },
    {
      "domainName": ""
    },
    {
      "domainName": ""
    }
  ]
}