Version

 You can retrieve the version number of the CMS.

URI Definition

Method

URI and Fields

GET


/iap/version

Returns the version of the CMS.

Success Response

Current version of CMS
{
   "value":[string]
   "type" :[string]
}

Example

https://localhost/iap/version


Response

{
   "value": "2.50.003",
   "type": "CLOUD"
}                                                                                                                                                   


/iap/version/updates

Checking the state of the update monitoring.

Success Response

State of the updates monitoring.

{
   "value": true
}

Example

https://localhost/iap/version/updates


Response

{
   "value": true
}                                                                                                                                                   


PUT/iap/version/updates

Set and return state of the updates monitoring.

Query Parameters

  • monitored – true if monitoring will work, or false if will not.

Success Response

True if updates is monitored and false if don’t.

{
   "value": true
}

Example

https://localhost/iap/version/updates?monitored=true


Response

{
   "value": true
}                                                                                                                                                   

Query Parameters

Optional query parameters can be used with your REST request.  Specifying queries is described under Queries and ParametersPath Parameters, and Query Parameters.