The ID of the table metadata to get all column metadata from
is_masked
boolean
Get only masked column metadata when this is true and only unmasked column metadata when this is false
page_number
integer <int64>
Default: 1
The page number for which to get column metadata. This will default to the first page if excluded
page_size
integer <int64>
The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided
Responses
200
Success
400
Bad request
403
Forbidden access
404
Not found
get/column-metadata
Response samples
200
application/json
{
"_pageInfo": {
"numberOnPage": 0,
"total": 0
},
"responseList": [
{
"algorithmName": "FirstNameLookup",
"domainName": "FIRST_NAME",
"isProfilerWritable": false
}
]
}
Get column metadata by ID
Securityapi_key
Request
path Parameters
columnMetadataId
required
integer <int64>
The ID of the column metadata to get
Responses
200
Success
403
Forbidden access
404
Not found
get/column-metadata/{columnMetadataId}
Response samples
200
application/json
{
"algorithmName": "FirstNameLookup",
"domainName": "FIRST_NAME",
"isProfilerWritable": false
}
Update column metadata by ID
Securityapi_key
Request
path Parameters
columnMetadataId
required
integer <int64>
The ID of the column metadata to update
Request Body schema: application/json
required
The updated column metadata
algorithmName
string <= 500 characters
The name of the algorithm assigned to this column. Columns that are unmasked should have this property unset, in addition to having 'domainName' unset. If this field is set, then the 'domainName' must also be specified.
algorithmFieldId
integer <int64>
The ID number of the algorithm field that is associated with this column.
algorithmGroupNo
integer <int64>
The group number of algorithm to identify a set of columns associated with one instance of algorithm.
domainName
string <= 20 characters
The name of the domain assigned to this column. Columns that are left unmasked should have this property unset. If the 'domainName' is set, but the 'algorithmName' is unset, then the default algorithm corresponding to the 'domainName' will be used.
dateFormat
string <= 50 characters
The date format of the date assigned to this column.
isProfilerWritable
required
boolean
This field indicates whether or not a column's fields (e.g. algorithm or domain assignment) may be modified during the execution of a profile job when there is a profiling match.
documentStoreType
string
This field indicates the type of document stored in the column. Required in case where fileFormatId is provided. Accepted values: ['JSON','XML']
fileFormatId
integer <int32>
The ID number of the file format. Required in case where documentStoreType is provided.
notes
string <= 500 characters
This field is used to store additional information about the column.