listWebhookEndpoints method

Future<TListWebhookEndpointsResponse> listWebhookEndpoints({
  1. required TListWebhookEndpointsBody input,
})

List webhook endpoints within an organization.

Sign the provided TListWebhookEndpointsBody with the client's stamp function and submit the request (POST /public/v1/query/list_webhook_endpoints).

See also: stampListWebhookEndpoints.

Implementation

Future<TListWebhookEndpointsResponse> listWebhookEndpoints({
  required TListWebhookEndpointsBody input,
}) async {
  return await request<TListWebhookEndpointsBody,
          TListWebhookEndpointsResponse>(
      "/public/v1/query/list_webhook_endpoints",
      input,
      (json) => TListWebhookEndpointsResponse.fromJson(json));
}