Get Commcell Details
Select
SaaS
Customer Managed
This API returns the commcell details such as commcell name, commell version, Release Name and Commcell ID
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- cacheId string
Report dataset cache Id
- offset integer
Denotes the starting point or index from which the requested data begins
- limit integer
Total number of records in the response
- totalRecordCount integer
Total Records in the response
columns object[]
List of columns in the dataset
name stringColumn Name
dataField stringData field name
displayName stringDisplay Name of the column
type stringData type
precision integerDecimal point precision
scale integer- recordsCount integer
Total Records in the rows
- records string[]
Rows containing the output
- failures object
- warnings object
{
"cacheId": "string",
"offset": 0,
"limit": 0,
"totalRecordCount": 0,
"columns": [
{
"name": "string",
"dataField": "string",
"displayName": "string",
"type": "string",
"precision": 0,
"scale": 0
}
],
"recordsCount": 0,
"records": [
"string"
],
"failures": {},
"warnings": {}
}
{
"cacheId": "5427795e83fb4e97915e88d14037dfc3",
"offset": 0,
"limit": 0,
"totalRecordCount": 1,
"columns": [
{
"name": "sys_rowid",
"dataField": "sys_rowid",
"displayName": "$row_number$",
"type": "Long",
"precision": 64,
"scale": 0
},
{
"name": "Data Source",
"dataField": "Data Source",
"displayName": "Data Source",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "CommCellID",
"dataField": "CommCellID",
"displayName": "CommCellID",
"type": "Integer",
"precision": 32,
"scale": 0
},
{
"name": "CommCellName",
"dataField": "CommCellName",
"displayName": "CommCellName",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "Version",
"dataField": "Version",
"displayName": "Version",
"type": "String",
"precision": 1000000000,
"scale": 0
},
{
"name": "ReleaseName",
"dataField": "ReleaseName",
"displayName": "ReleaseName",
"type": "String",
"precision": 1000000000,
"scale": 0
}
],
"recordsCount": 1,
"records": [
[
1,
"mustardtiger",
9100160,
"mustardtiger",
"11 SP34.11",
"2024"
]
],
"failures": {},
"warnings": {}
}
Loading...