getSigningPlatform method
Returns information on a specific signing platform.
May throw AccessDeniedException.
May throw InternalServiceErrorException.
May throw ResourceNotFoundException.
May throw TooManyRequestsException.
Parameter platformId :
The ID of the target signing platform.
Implementation
Future<GetSigningPlatformResponse> getSigningPlatform({
required String platformId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/signing-platforms/${Uri.encodeComponent(platformId)}',
exceptionFnMap: _exceptionFns,
);
return GetSigningPlatformResponse.fromJson(response);
}