pub async fn get_outgoing_webhooks(
configuration: &Configuration,
page: Option<i32>,
per_page: Option<i32>,
team_id: Option<&str>,
channel_id: Option<&str>,
) -> Result<Vec<OutgoingWebhook>, Error<GetOutgoingWebhooksError>>
Expand description
Get a page of a list of outgoing webhooks. Optionally filter for a specific team or channel using query parameters. ##### Permissions manage_webhooks
for the system or manage_webhooks
for the specific team/channel.