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