retweeterIds

fun Statuses.retweeterIds(    id: Long,     count: Int? = null,     cursor: Long? = null,     stringifyIds: Boolean? = null,     vararg options: Option): CursorJsonObjectApiAction<CursorIds, Long>

Returns a collection of up to 100 user IDs belonging to users who have retweeted the Tweet specified by the id parameter. This method offers similar data to GET statuses/retweets/:id.

Twitter API reference

Receiver

Statuses endpoint instance.

Return

CursorJsonObjectApiAction for CursorIds model.

Parameters

id

The numerical ID of the desired status.

count

Specifies the number of records to retrieve. Must be less than or equal to 100.

cursor

Causes the list of IDs to be broken into pages of no more than 100 IDs at a time. The number of IDs returned is not guaranteed to be 100 as suspended users are filtered out after connections are queried. 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 our cursor docs for more information. While this method supports the cursor parameter, the entire result set can be returned in a single cursored collection. Using the count parameter with this method will not provide segmented cursors for use with this parameter.

stringifyIds

Many programming environments will not consume Tweet ids due to their size. Provide this option to have ids returned as strings instead.

options

Optional. Custom parameters of this request.