Get the frequency for a column
get/servers/{serverName}/caslibs/{caslibName}/tables/{tableName}/columns/{columnName}/frequency
Returns the frequency for a single column in the loaded CAS table.
1{2 "columnName": "string",3 "columnType": 0,4 "frequency": [5 {6 "formattedValue": "string",7 "frequency": 0,8 "value": {},9 "version": 010 }11 ],12 "version": 013}
Name | Type | Required | Description |
---|---|---|---|
caslibName | string | true | The name of the Caslib containing the table. |
columnName | string | true | The name of column for which frequency info is requested. |
serverName | string | true | The name of the server containing the Caslib. |
tableName | string | true | The name of table for which column info is requested. |
Name | Type | Required | Description |
---|---|---|---|
limit | string | false | The optional limit of the number of items to retrieve. If omitted, a default of 50 will be returned. If set to 0, a limit of 1000 will be returned. |
sessionId | string | false | The optional ID of the session containing the Caslib. If unspecified, only tables in global caslibs will be accessible. |
Status | Meaning | Description | ||
---|---|---|---|---|
200 | OK | The requested table's frequency information for a given column was returned. | Schema | |
404 | Not Found | The requested CAS server or Caslib does not exist. | ||
409 | Conflict | The request could not be completed due to a conflict with the current state of the resource. Details are included in the response body. |