import 'package:openproject_dart_sdk/api.dart';
All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
apiV3QueriesSortBysIdGet | GET /api/v3/queries/sort_bys/{id} | View Query Sort By |
apiV3QueriesSortBysIdGet(id)
View Query Sort By
Retreive an individual QuerySortBy as identified by the id parameter.
import 'package:openproject_dart_sdk/api.dart';
// TODO Configure HTTP basic authorization: basicAuth
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').username = 'YOUR_USERNAME'
//defaultApiClient.getAuthentication<HttpBasicAuth>('basicAuth').password = 'YOUR_PASSWORD';
// TODO Configure OAuth2 access token for authorization: oAuth
//defaultApiClient.getAuthentication<OAuth>('oAuth').accessToken = 'YOUR_ACCESS_TOKEN';
final api_instance = QuerySortBysApi();
final id = id_example; // String | QuerySortBy identifier. The identifier is a combination of the column identifier and the direction.
try {
api_instance.apiV3QueriesSortBysIdGet(id);
} catch (e) {
print('Exception when calling QuerySortBysApi->apiV3QueriesSortBysIdGet: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | QuerySortBy identifier. The identifier is a combination of the column identifier and the direction. |
void (empty response body)
- Content-Type: Not defined
- Accept: application/hal+json
[Back to top] [Back to API list] [Back to Model list] [Back to README]