serviceTokenRetrieve method

Future<void> serviceTokenRetrieve()

GET Gets site hash_key from or Gets site_id form hash_key

Implementation

Future<void> serviceTokenRetrieve() async {
  final response = await serviceTokenRetrieveWithHttpInfo();
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}