> ## Documentation Index
> Fetch the complete documentation index at: https://x-preview-mintlify-5e62557c.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# UsersClient

> X API SDK의 users.client Python 모듈에 대한 참조입니다. X API v2의 users 엔드포인트를 호출하기 위한 클라이언트 클래스와 메서드입니다.

## UsersClient

<Badge color="blue">Class</Badge>

<Badge color="gray">기반 클래스: object</Badge>

사용자 작업을 위한 클라이언트

## 생성자

### `__init__`

#### 매개변수

<ParamField path="path.client" type="Client" />

### `block_dms`

Block DMs
Blocks direct messages to or from a specific User by their ID for the authenticated user.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the target User that the authenticated user requesting to block dms for.
</ParamField>

#### 반환값

`BlockDmsResponse` - 응답 데이터

### `create_bookmark`

Bookmark 생성
Adds a post to the authenticated user’s bookmarks.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User for whom to add bookmarks.
</ParamField>

<ParamField path="body.body" type="CreateBookmarkRequest">
  요청 본문
</ParamField>

### `delete_bookmark`

Bookmark 삭제
Removes a Post from the authenticated user’s Bookmarks by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User whose bookmark is to be removed.
</ParamField>

<ParamField path="path.tweet_id" type="Any">
  The ID of the Post that the source User is removing from bookmarks.
</ParamField>

#### 반환값

`DeleteBookmarkResponse` - 응답 데이터

### `follow_list`

Follow List
Causes the authenticated user to follow a specific List by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that will follow the List.
</ParamField>

<ParamField path="body.body" type="FollowListRequest">
  요청 본문
</ParamField>

### `follow_user`

Follow User
Causes the authenticated user to follow a specific user by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that is requesting to follow the target User.
</ParamField>

<ParamField path="body.body" type="FollowUserRequest">
  요청 본문
</ParamField>

### `get_blocking`

차단 목록 조회
Retrieves a list of Users blocked by the specified User ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User for whom to return results.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get a specified ‘page’ of results.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetBlockingResponse`

### `get_bookmark_folders`

Bookmark 폴더 조회
Retrieves a list of Bookmark folders created by the authenticated user.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User for whom to return results.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results.
</ParamField>

#### 반환값

`IteratorGetBookmarkFoldersResponse`

### `get_bookmarks`

Bookmark 목록 조회
Retrieves a list of Posts bookmarked by the authenticated user.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User for whom to return results.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.media_fields" type="List or None" default="None">
  표시할 Media 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.poll_fields" type="List or None" default="None">
  표시할 Poll 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.place_fields" type="List or None" default="None">
  표시할 Place 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetBookmarksResponse`

### `get_bookmarks_by_folder_id`

폴더 ID로 Bookmark 조회
Retrieves Posts in a specific Bookmark folder by its ID for the authenticated user.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User for whom to return results.
</ParamField>

<ParamField path="path.folder_id" type="Any">
  The ID of the Bookmark Folder that the authenticated User is trying to fetch Posts for.
</ParamField>

#### 반환값

`GetBookmarksByFolderIdResponse` - 응답 데이터

### `get_by_id`

ID로 User 조회
Retrieves details of a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`GetByIdResponse` - 응답 데이터

### `get_by_ids`

ID로 User 목록 조회
Retrieves details of multiple Users by their IDs.

#### 매개변수

<ParamField path="path.ids" type="List">
  A list of User IDs, comma-separated. You can specify up to 100 IDs.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`GetByIdsResponse` - 응답 데이터

### `get_by_username`

username으로 User 조회
Retrieves details of a specific User by their username.

#### 매개변수

<ParamField path="path.username" type="str">
  A username.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`GetByUsernameResponse` - 응답 데이터

### `get_by_usernames`

username으로 User 목록 조회
Retrieves details of multiple Users by their usernames.

#### 매개변수

<ParamField path="path.usernames" type="List">
  A list of usernames, comma-separated.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`GetByUsernamesResponse` - 응답 데이터

### `get_followed_lists`

팔로우한 List 조회
Retrieves a list of Lists followed by a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get a specified ‘page’ of results.
</ParamField>

<ParamField path="path.list_fields" type="List or None" default="None">
  표시할 List 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetFollowedListsResponse`

### `get_followers`

팔로워 조회
Retrieves a list of Users who follow a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get a specified ‘page’ of results.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetFollowersResponse`

### `get_following`

팔로잉 조회
Retrieves a list of Users followed by a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get a specified ‘page’ of results.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetFollowingResponse`

### `get_liked_posts`

Get liked Posts
Retrieves a list of Posts liked by a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.media_fields" type="List or None" default="None">
  표시할 Media 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.poll_fields" type="List or None" default="None">
  표시할 Poll 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.place_fields" type="List or None" default="None">
  표시할 Place 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetLikedPostsResponse`

### `get_list_memberships`

List 멤버십 조회
Retrieves a list of Lists that a specific User is a member of by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get a specified ‘page’ of results.
</ParamField>

<ParamField path="path.list_fields" type="List or None" default="None">
  표시할 List 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetListMembershipsResponse`

### `get_me`

Get my User
Retrieves details of the authenticated user.

#### 매개변수

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`GetMeResponse` - 응답 데이터

### `get_mentions`

Get mentions
Retrieves a list of Posts that mention a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.since_id" type="Any or None" default="None">
  The minimum Post ID to be included in the result set. This parameter takes precedence over start\_time if both are specified.
</ParamField>

<ParamField path="path.until_id" type="Any or None" default="None">
  The maximum Post ID to be included in the result set. This parameter takes precedence over end\_time if both are specified.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results.
</ParamField>

<ParamField path="path.start_time" type="str or None" default="None">
  YYYY-MM-DDTHH:mm:ssZ. The earliest UTC timestamp from which the Posts will be provided. The since\_id parameter takes precedence if it is also specified.
</ParamField>

<ParamField path="path.end_time" type="str or None" default="None">
  YYYY-MM-DDTHH:mm:ssZ. The latest UTC timestamp to which the Posts will be provided. The until\_id parameter takes precedence if it is also specified.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.media_fields" type="List or None" default="None">
  표시할 Media 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.poll_fields" type="List or None" default="None">
  표시할 Poll 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.place_fields" type="List or None" default="None">
  표시할 Place 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetMentionsResponse`

### `get_muting`

뮤트 목록 조회
Retrieves a list of Users muted by the authenticated user.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User for whom to return results.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetMutingResponse`

### `get_owned_lists`

Get owned Lists
Retrieves a list of Lists owned by a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get a specified ‘page’ of results.
</ParamField>

<ParamField path="path.list_fields" type="List or None" default="None">
  표시할 List 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetOwnedListsResponse`

### `get_pinned_lists`

Get pinned Lists
Retrieves a list of Lists pinned by the authenticated user.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User for whom to return results.
</ParamField>

<ParamField path="path.list_fields" type="List or None" default="None">
  표시할 List 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`GetPinnedListsResponse` - 응답 데이터

### `get_posts`

Post 목록 조회
Retrieves a list of posts authored by a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the User to lookup.
</ParamField>

<ParamField path="path.since_id" type="Any or None" default="None">
  The minimum Post ID to be included in the result set. This parameter takes precedence over start\_time if both are specified.
</ParamField>

<ParamField path="path.until_id" type="Any or None" default="None">
  The maximum Post ID to be included in the result set. This parameter takes precedence over end\_time if both are specified.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results.
</ParamField>

<ParamField path="path.exclude" type="List or None" default="None">
  The set of entities to exclude (e.g. ‘replies’ or ‘retweets’).
</ParamField>

<ParamField path="path.start_time" type="str or None" default="None">
  YYYY-MM-DDTHH:mm:ssZ. The earliest UTC timestamp from which the Posts will be provided. The since\_id parameter takes precedence if it is also specified.
</ParamField>

<ParamField path="path.end_time" type="str or None" default="None">
  YYYY-MM-DDTHH:mm:ssZ. The latest UTC timestamp to which the Posts will be provided. The until\_id parameter takes precedence if it is also specified.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.media_fields" type="List or None" default="None">
  표시할 Media 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.poll_fields" type="List or None" default="None">
  표시할 Poll 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.place_fields" type="List or None" default="None">
  표시할 Place 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetPostsResponse`

### `get_reposts_of_me`

나의 리포스트 조회
Retrieves a list of Posts that repost content from the authenticated user.

#### 매개변수

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.media_fields" type="List or None" default="None">
  표시할 Media 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.poll_fields" type="List or None" default="None">
  표시할 Poll 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.place_fields" type="List or None" default="None">
  표시할 Place 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetRepostsOfMeResponse`

### `get_timeline`

타임라인 조회
Retrieves a reverse chronological list of Posts in the authenticated User’s Timeline.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User to list Reverse Chronological Timeline Posts of.
</ParamField>

<ParamField path="path.since_id" type="Any or None" default="None">
  The minimum Post ID to be included in the result set. This parameter takes precedence over start\_time if both are specified.
</ParamField>

<ParamField path="path.until_id" type="Any or None" default="None">
  The maximum Post ID to be included in the result set. This parameter takes precedence over end\_time if both are specified.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.pagination_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results.
</ParamField>

<ParamField path="path.exclude" type="List or None" default="None">
  The set of entities to exclude (e.g. ‘replies’ or ‘retweets’).
</ParamField>

<ParamField path="path.start_time" type="str or None" default="None">
  YYYY-MM-DDTHH:mm:ssZ. The earliest UTC timestamp from which the Posts will be provided. The since\_id parameter takes precedence if it is also specified.
</ParamField>

<ParamField path="path.end_time" type="str or None" default="None">
  YYYY-MM-DDTHH:mm:ssZ. The latest UTC timestamp to which the Posts will be provided. The until\_id parameter takes precedence if it is also specified.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.media_fields" type="List or None" default="None">
  표시할 Media 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.poll_fields" type="List or None" default="None">
  표시할 Poll 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.place_fields" type="List or None" default="None">
  표시할 Place 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorGetTimelineResponse`

### `like_post`

Like Post
Causes the authenticated user to Like a specific Post by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that is requesting to like the Post.
</ParamField>

<ParamField path="body.body" type="LikePostRequest">
  요청 본문
</ParamField>

### `mute_user`

Mute User
Causes the authenticated user to mute a specific User by their ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that is requesting to mute the target User.
</ParamField>

<ParamField path="body.body" type="MuteUserRequest">
  요청 본문
</ParamField>

### `pin_list`

Pin List
Causes the authenticated user to pin a specific List by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that will pin the List.
</ParamField>

<ParamField path="body.body" type="PinListRequest">
  요청 본문
</ParamField>

### `repost_post`

Repost Post
Causes the authenticated user to repost a specific Post by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that is requesting to repost the Post.
</ParamField>

<ParamField path="body.body" type="RepostPostRequest">
  요청 본문
</ParamField>

### `search`

Search Users
Retrieves a list of Users matching a search query.

#### 매개변수

<ParamField path="path.query" type="Any">
  TThe the query string by which to query for users.
</ParamField>

<ParamField path="path.max_results" type="int or None" default="None">
  결과의 최대 개수입니다.
</ParamField>

<ParamField path="path.next_token" type="Any or None" default="None">
  This parameter is used to get the next ‘page’ of results. The value used with the parameter is pulled directly from the response provided by the API, and should not be modified.
</ParamField>

<ParamField path="path.user_fields" type="List or None" default="None">
  표시할 User 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.expansions" type="List or None" default="None">
  확장할 필드의 쉼표로 구분된 목록입니다.
</ParamField>

<ParamField path="path.tweet_fields" type="List or None" default="None">
  표시할 Tweet 필드의 쉼표로 구분된 목록입니다.
</ParamField>

#### 반환값

`IteratorSearchResponse`

### `unblock_dms`

Unblock DMs
Unblocks direct messages to or from a specific User by their ID for the authenticated user.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the target User that the authenticated user requesting to unblock dms for.
</ParamField>

#### 반환값

`UnblockDmsResponse` - 응답 데이터

### `unfollow_list`

Unfollow List
Causes the authenticated user to unfollow a specific List by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that will unfollow the List.
</ParamField>

<ParamField path="path.list_id" type="Any">
  The ID of the List to unfollow.
</ParamField>

#### 반환값

`UnfollowListResponse` - 응답 데이터

### `unfollow_user`

Unfollow User
Causes the authenticated user to unfollow a specific user by their ID.

#### 매개변수

<ParamField path="path.source_user_id" type="Any">
  The ID of the authenticated source User that is requesting to unfollow the target User.
</ParamField>

<ParamField path="path.target_user_id" type="Any">
  The ID of the User that the source User is requesting to unfollow.
</ParamField>

#### 반환값

`UnfollowUserResponse` - 응답 데이터

### `unlike_post`

Unlike Post
Causes the authenticated user to Unlike a specific Post by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that is requesting to unlike the Post.
</ParamField>

<ParamField path="path.tweet_id" type="Any">
  The ID of the Post that the User is requesting to unlike.
</ParamField>

#### 반환값

`UnlikePostResponse` - 응답 데이터

### `unmute_user`

Unmute User
Causes the authenticated user to unmute a specific user by their ID.

#### 매개변수

<ParamField path="path.source_user_id" type="Any">
  The ID of the authenticated source User that is requesting to unmute the target User.
</ParamField>

<ParamField path="path.target_user_id" type="Any">
  The ID of the User that the source User is requesting to unmute.
</ParamField>

#### 반환값

`UnmuteUserResponse` - 응답 데이터

### `unpin_list`

Unpin List
Causes the authenticated user to unpin a specific List by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User for whom to return results.
</ParamField>

<ParamField path="path.list_id" type="Any">
  The ID of the List to unpin.
</ParamField>

#### 반환값

`UnpinListResponse` - 응답 데이터

### `unrepost_post`

Unrepost Post
Causes the authenticated user to unrepost a specific Post by its ID.

#### 매개변수

<ParamField path="path.id" type="Any">
  The ID of the authenticated source User that is requesting to repost the Post.
</ParamField>

<ParamField path="path.source_tweet_id" type="Any">
  The ID of the Post that the User is requesting to unretweet.
</ParamField>

#### 반환값

`UnrepostPostResponse` - 응답 데이터
