DELETE /2/users/:source_user_id/muting/:target_user_id
DELETE /2/users/:source_user_id/muting/:target_user_id
Allows an authenticated user ID to unmute the target user.
The request succeeds with no action when the user sends a request to a user they're not muting or have already unmuted.
Endpoint URL
https://api.x.com/2/users/:source_user_id/muting/:target_user_id
Authentication and rate limits
Authentication methods supported by this endpoint | OAuth 2.0 Authorization Code with PKCE OAuth 1.0a is also available for this endpoint. |
---|---|
Rate limit | User rate limit (User context): 50 requests per 15-minute window per each authenticated user |
OAuth 2.0 scopes required by this endpoint
|
Learn more about OAuth 2.0 Authorization Code with PKCE |
Path parameters
Name | Type | Description |
---|---|---|
source_user_id Required | string | The user ID who you would like to initiate an unmute on behalf of. The user’s ID must correspond to the user ID of the authenticating user, meaning that you must pass the Access Tokens associated with the user ID when authenticating your request. |
target_user_id Required | string | The user ID of the user that you would like the source_user_id to unmute. |
Example code with offical SDKs
TypeScript
Java
Example responses
Successful response
Response fields
Name | Type | Description |
---|---|---|
muting | boolean | Indicates whether the user is muting the specified user as a result of this request. The returned value is false for a successful unmute request. |