# \EvaluationsApi
All URIs are relative to *http://localhost:4646/v1*
[**get_allocations_for_evaluation**](EvaluationsApi.md#get_allocations_for_evaluation) | **get** /evaluation/{eval_id}/allocations | lists the allocations created or modified for the given evaluation
[**get_evaluation**](EvaluationsApi.md#get_evaluation) | **get** /evaluation/{eval_id} | reads information about a specific evaluation by ID
[**get_evaluations**](EvaluationsApi.md#get_evaluations) | **get** /evaluations | lists all evaluations
## get_allocations_for_evaluation
> Vec<crate::models::AllocationListStub> get_allocations_for_evaluation(eval_id, namespace, region, index, wait)
lists the allocations created or modified for the given evaluation
### Parameters
**eval_id** | **String** | Specifies the UUID of the evaluation. This must be the full UUID, not the short 8-character one. This is specified as part of the path | [required] |
**namespace** | Option<**String**> | | |
**region** | Option<**String**> | Make a request across regions to the given region | |
**index** | Option<**i64**> | index used for blocking requests | |
**wait** | Option<**String**> | wait time used for blocking requests | |
### Return type
[**Vec<crate::models::AllocationListStub>**](AllocationListStub.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
## get_evaluation
> crate::models::Evaluation get_evaluation(eval_id, namespace, region, index, wait)
reads information about a specific evaluation by ID
### Parameters
**eval_id** | **String** | Specifies the UUID of the evaluation. This must be the full UUID, not the short 8-character one. This is specified as part of the path | [required] |
**namespace** | Option<**String**> | | |
**region** | Option<**String**> | Make a request across regions to the given region | |
**index** | Option<**i64**> | index used for blocking requests | |
**wait** | Option<**String**> | wait time used for blocking requests | |
### Return type
[**crate::models::Evaluation**](Evaluation.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
## get_evaluations
> Vec<crate::models::Evaluation> get_evaluations(namespace, region, index, wait, prefix)
lists all evaluations
### Parameters
**namespace** | Option<**String**> | | |
**region** | Option<**String**> | Make a request across regions to the given region | |
**index** | Option<**i64**> | index used for blocking requests | |
**wait** | Option<**String**> | wait time used for blocking requests | |
**prefix** | Option<**String**> | Specifies a string to filter jobs on based on an index prefix. This is specified as a query string parameter | |
### Return type
[**Vec<crate::models::Evaluation>**](Evaluation.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)