getSigningPlatform method

Future<GetSigningPlatformResponse> getSigningPlatform({
  1. required String platformId,
})

Returns information on a specific signing platform.

May throw ResourceNotFoundException. May throw AccessDeniedException. May throw TooManyRequestsException. May throw InternalServiceErrorException.

Parameter platformId : The ID of the target signing platform.

Implementation

Future<GetSigningPlatformResponse> getSigningPlatform({
  required String platformId,
}) async {
  ArgumentError.checkNotNull(platformId, 'platformId');
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/signing-platforms/${Uri.encodeComponent(platformId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetSigningPlatformResponse.fromJson(response);
}