Hello
This call is used mainly for debugging or as a "ping": don’t bother trying to get other calls to work if this one doesn’t.
This call is the only call that does not begin with an authentication object.
Call
liss.hello()
Parameters
None
Returns
An XmlRpc struct or JSON object as follows:
Field | Type | Notes | Example |
---|---|---|---|
SIS | string mandatory | The name of the SIS | Edumate |
LissVersion | integer mandatory | The LISS protocol version number used by the SIS. The version number is encoded as in section 3.3, i.e. major version number followed by 2 digits for minor version number followed by 2 digits for release number. | 10000 |
Example
Send
{
"method": "liss.hello",
"params": [],
"id": 1
}
Return
{
"result": {
"SIS": "Edumate",
"LissVersion": 10000
},
"id": 1
}