Customer Results

class icometrix_sdk.resources.customer_results.CustomerResults(api)

Bases: object

Parameters:

api (ApiClient)

get_all_for_patient(patient_uri, **kwargs)

Get al customer results for a patient

Parameters:

patient_uri (str) – The uri of a patient

Returns:

A Paginated response containing customer-results

Return type:

PaginatedResponse[CustomerResultEntity]

get_all_for_pipeline_result(pipeline_result_uri, **kwargs)

Get al customer reports for a pipeline-result

Parameters:

pipeline_result_uri (str) – The uri of a pipeline-result

Returns:

A Paginated response containing customer-results

Return type:

PaginatedResponse[CustomerResultEntity]

get_all_for_study(study_uri, **kwargs)

Get al customer results for a study

Parameters:

study_uri (str) – The uri of a study

Returns:

A Paginated response containing customer-results

Return type:

PaginatedResponse[CustomerResultEntity]

get_one(customer_result_uri)

Get a single customer-result based on the customer-result uri

Parameters:

customer_result_uri (str) – the uri of the customer-result

Returns:

A single customer-result or 404

Return type:

CustomerResultEntity