# Get profile report by executionId Get profile results by executionId Endpoint: GET /profile-results-database/{executionId} Version: 5.1.47 Security: api_key ## Path parameters: - `executionId` (integer, required) The ID of the execution ## Query parameters: - `sort_by` (string) Sort by field. Enum: "algorithmName", "columnName", "domainName", "tableName" - `sort_dir` (string) Sort direction. Enum: "asc", "desc" - `page_number` (integer) The page number for which to get algorithms. This will default to the first page if excluded - `page_size` (integer) The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided ## Response 200 fields (application/json): - `_pageInfo` (object) - `_pageInfo.numberOnPage` (integer) The number of items on this page. This should always match the page size unless it is the last page. - `_pageInfo.total` (integer) The total number of items - `responseList` (array) Example: [{"columnMetadataId":1,"columnName":"first_name","tableName":"test_table","domainName":"FirstName","algorithmName":"FirstNameAlgorithm","dataType":"String","confidence":100,"isProfilerWritable":true}] - `responseList.columnMetadataId` (integer) The ID number of the column metadata. This field is auto-generated by the Masking Engine. Example: 1 - `responseList.columnName` (string) The name of the column. Example: "first_name" - `responseList.tableName` (string) The name of the table. Example: "test_table" - `responseList.domainName` (string) The name of the domain assigned to the column. Example: "FirstName" - `responseList.algorithmName` (string) The name of the algorithm assigned to the column. Example: "FirstNameAlgorithm" - `responseList.dataType` (string) The data type of the column. Example: "String" - `responseList.confidence` (integer) The confidence level. Example: 100 - `responseList.isProfilerWritable` (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. Example: true ## Response 400 fields ## Response 401 fields ## Response 404 fields