go-twitch/api/moderation/remove_channel_moderator.go

41 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package moderation
import (
"context"
"net/http"
"net/url"
"github.com/google/go-querystring/query"
)
type RemoveChannelModeratorParams struct {
// The ID of the broadcaster that owns the chat room. This ID must match the user ID in the access token.
BroadcasterID string `url:"broadcaster_id"`
// The ID of the user to remove as a moderator from the broadcasters chat room.
UserID string `url:"user_id"`
}
// Removes a moderator from the broadcasters chat room.
//
// Rate Limits: The broadcaster may remove a maximum of 10 moderators within a 10-second window.
//
// Requires a user access token that includes the channel:manage:moderators scope.
func (m *Moderation) RemoveChannelModerator(ctx context.Context, params *RemoveChannelModeratorParams) error {
v, _ := query.Values(params)
endpoint := m.baseUrl.ResolveReference(&url.URL{Path: "moderation/moderators", RawQuery: v.Encode()})
req, err := http.NewRequestWithContext(ctx, http.MethodDelete, endpoint.String(), nil)
if err != nil {
return err
}
res, err := m.client.Do(req)
if err != nil {
return err
}
defer res.Body.Close()
return nil
}