getWebhookIntegration method

Future<Object?> getWebhookIntegration({
  1. Map<String, Object?>? query,
  2. Map<String, String>? headers,
})

GET /{version}/webhooks/integration

Implementation

Future<Object?> getWebhookIntegration({ Map<String, Object?>? query, Map<String, String>? headers }) {
  return transport.send(
    route: '/{version}/webhooks/integration',
    method: 'GET',
    query: query,
    headers: headers,
    pathParams: null,
  );
}