removeWebhookDestination method
DELETE /{version}/webhooks/destinations/{destinationId}
Implementation
Future<Object?> removeWebhookDestination({ required Object destinationId, Map<String, Object?>? query, Object? body, Map<String, String>? headers }) {
return transport.send(
route: '/{version}/webhooks/destinations/{destinationId}',
method: 'DELETE',
query: query,
body: body,
headers: headers,
pathParams: <String, Object?>{'destinationId': destinationId},
);
}