noRetweetsIds

fun Friendships.noRetweetsIds(stringifyIds: Boolean? = null, vararg options: Option): ApiAction<List<Long>>

Returns a collection of user_ids that the currently authenticated user does not want to receive retweets from. Use POST friendships/update to set the "no retweets" status for a given user account on behalf of the current user.

Twitter API reference

Receiver

Friendships endpoint instance.

Return

DelegatedAction for List of Long.

Parameters

stringifyIds

Some 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. This parameter is important to use in Javascript environments.

options

Optional. Custom parameters of this request.


val Friendships.noRetweetsIds: ApiAction<List<Long>>

Shorthand property to Friendships.noRetweetsIds.

See also