toolsOzoneCommunicationDeleteTemplate function
Delete a communication template.
Implementation
Future<XRPCResponse<EmptyData>> toolsOzoneCommunicationDeleteTemplate({
required String id,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.toolsOzoneCommunicationDeleteTemplate,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'id': id},
);