batchDeleteTaxRegistration method
Deletes tax registration for multiple accounts in batch. This can be used to delete tax registrations for up to five accounts in one batch.
May throw ConflictException.
May throw InternalServerException.
May throw ValidationException.
Parameter accountIds :
List of unique account identifiers.
Implementation
Future<BatchDeleteTaxRegistrationResponse> batchDeleteTaxRegistration({
required List<String> accountIds,
}) async {
final $payload = <String, dynamic>{
'accountIds': accountIds,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/BatchDeleteTaxRegistration',
exceptionFnMap: _exceptionFns,
);
return BatchDeleteTaxRegistrationResponse.fromJson(response);
}