Skip to main content

getMaintenanceWindowList

This method will display a list of available Maintenance Windows for a company. It only applies for companies where the user has visibility.

Parameters

Parameter

Type

Optional

Description

companyId

String

Yes

Company identifier

type

Number

Yes

The type of maintenance windows to retrieve. If not provided, all windows will be retrieved. The only available value is 0 - Patch Management.

page

Number

Yes

The results page number. The default value is 1.

perpage

Number

Yes

The number of items displayed in a page. The upper limit is 100 items per page. Default value: 30 items per page

Return value

This method returns an Object containing information on the Maintanace Windows available for a company. The returned object contains:

  • page - the current page

  • pagesCount - the current number of available pages

  • perPage - the total number of returned items per page

  • total - the total number of items

  • items - contains the maintenance list. Each entry in the list has the following keys:

    • companyId - the company id

    • companyName - the company name

    • id - the maintenance window id

    • name - the maintenance window name

    • type - the maintenance window type. Possible values: 0 - Patch Management

Example

Request:

{
  "method": "getMaintenanceWindowsList",
  "id": "49defe1e-4b5b-4de6-a568-468d09cc5241",
  "jsonrpc": "2.0",
  "params": {
    "companyId": "61975f90a57167696c1b2380"
  }
}

Response:

{
  "id": "49defe1e-4b5b-4de6-a568-468d09cc5241",
  "jsonrpc": "2.0",
  "result": {
    'total': 2,
    'page': 1,
    'perPage': 30,
    'pagesCount': 1,
    'items': [
      {
        'id': '61976031f9d4bf64ae0e371a',
        'name': '1YfpNmiQmhv8xbJTbsFP',
        'type': 0,
        'companyId': '6197602bab73ab07382f37f6',
        'companyName': 'partnerChildCompany2021-11-19 10:28:27.697274'
      },
      {
        'id': '61976031fc446429a353fb52',
        'name': 'IBCwRywzdKKMYIno6Et0',
        'type': 0,
        'companyId': '6197602bab73ab07382f37f6',
        'companyName': 'partnerChildCompany2021-11-19 10:28:27.697274'
      }
    ]
  }
}