getVersion
Returns the application version.
HTTP GET /livechat/:domain/getVersion
Path Variables:
Name | Mandatory | Type | Description |
---|---|---|---|
domain | NO | STRING | Unique domain identifier |
Response:
Type: JSONp
Name | Type | Description |
---|---|---|
result | boolean | If true, the service response was performed correctly |
error | null / string | Contains the error description if an error has occurred in the request |
version | string | Application version |
Example:
Request
http://<hostname>:<port>/livechat/default/getVersion
Response
{
"result":true,
"version":"1.0.0",
"error":null
}
Â
Â