public/helper/Get-TwitterMutes_Users_Ids.ps1
function Get-TwitterMutes_Users_Ids { <# .SYNOPSIS Mute, block and report users .DESCRIPTION GET mutes/users/ids Returns an array of numeric user ids the authenticating user has muted. .PARAMETER stringify_ids Many programming environments will not consume Twitter IDs due to their size. Provide this option to have IDs returned as strings instead. Read more about Twitter IDs . .PARAMETER cursor Causes the list of IDs to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filtered out. If no cursor is provided, a value of -1 will be assumed, which is the first "page." The response from the API will include a previous_cursor and next_cursor to allow paging back and forth. See Using cursors to navigate collections for more information. .NOTES This helper function was generated by the information provided here: https://developer.twitter.com/en/docs/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-ids #> [CmdletBinding()] Param( [string]$stringify_ids, [string]$cursor ) Begin { [string]$Method = 'GET' [string]$Resource = '/mutes/users/ids' [string]$ResourceUrl = 'https://api.twitter.com/1.1/mutes/users/ids.json' [hashtable]$Parameters = $PSBoundParameters $CmdletBindingParameters | ForEach-Object { $Parameters.Remove($_) } } Process { If (-Not $OAuthSettings) { $OAuthSettings = Get-TwitterOAuthSettings -Resource $Resource } Invoke-TwitterAPI -Method $Method -ResourceUrl $ResourceUrl -Resource $Resource -Parameters $Parameters -OAuthSettings $OAuthSettings } End { } } |