Available on crate feature helix only.
Expand description

Helix endpoints regarding users

Examples

let client = HelixClient::new();
let req = GetUsersRequest::builder()
    .login(vec!["justinfan1337".into()])
    .build();

println!("{:?}", &client.req_get(req, &token).await?.data);

Modules

Blocks the specified user on behalf of the authenticated user. block-user

Gets a specified user’s block list. The list is sorted by when the block occurred in descending order (i.e. most recent block first). get-user-block-list

Gets information about one or more specified Twitch users. get-users

Gets information on follow relationships between two Twitch users. get-users-follows

Unblocks the specified user on behalf of the authenticated user. unblock-user

Structs

Query Parameters for Block User

Describes a follow relationship

Query Parameters for Get Users

Query Parameters for Unblock User

Return Values for Get Users

Enums

Return Values for Block User

Return Values for Unblock User