Skip to content

Get-TwitterListSubscriber

SYNOPSIS

Returns a collection of subscriber usernames of the specified list.

SYNTAX

ById (Default)

Get-TwitterListSubscriber -Id <String> [<CommonParameters>]

ByList

Get-TwitterListSubscriber -List <List> [<CommonParameters>]

DESCRIPTION

Returns a collection of subscriber usernames of the specified list.

Private list subscribers will only be shown if the authenticated user owns the specified list.

EXAMPLES

Example 1

PS > Get-TwitterListSubscriber -ListId 857199747848957957

Returns the users that subscribe to the list specified.

Example 2

PS > Get-TwitterList -Slug microsoft-evangelicals -OwnerUserName thedavecarroll | Get-TwitterListSubscriber

Returns the users that are subscribe to the list specified.

PARAMETERS

-Id

The id of the list.

Type: String
Parameter Sets: ById
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-List

A list object retrieved from Get-TwitterList.

Type: List
Parameter Sets: ByList
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.String[]

NOTES

Online Version

Get-TwitterList

Api Reference - GET lists/subscribers