getConfiguration method

Future<GetConfigurationResponse> getConfiguration()

Retrieves a TagKey configuration from an account.

May throw InternalServerException.

Implementation

Future<GetConfigurationResponse> getConfiguration() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/configuration',
    exceptionFnMap: _exceptionFns,
  );
  return GetConfigurationResponse.fromJson(response);
}