Get the frequency for a column

get/servers/{serverName}/caslibs/{caslibName}/tables/{tableName}/columns/{columnName}/frequency
Internal-Use Only

Returns the frequency for a single column in the loaded CAS table.

Request Samples

1

Response Samples

1{
2 "columnName": "string",
3 "columnType": 0,
4 "frequency": [
5 {
6 "formattedValue": "string",
7 "frequency": 0,
8 "value": {},
9 "version": 0
10 }
11 ],
12 "version": 0
13}

Path Parameters

NameTypeRequiredDescription
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.

Query Parameters

NameTypeRequiredDescription
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.

Responses

StatusMeaningDescription
200OKThe requested table's frequency information for a given column was returned.Schema
404Not FoundThe requested CAS server or Caslib does not exist.
409ConflictThe request could not be completed due to a conflict with the current state of the resource. Details are included in the response body.