Skip to main content
DELETE
/
2
/
users
/
{source_user_id}
/
muting
/
{target_user_id}
Unmute User
curl --request DELETE \
  --url https://api.x.com/2/users/{source_user_id}/muting/{target_user_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "muting": true
  },
  "errors": [
    {
      "title": "<string>",
      "type": "<string>",
      "detail": "<string>",
      "status": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

source_user_id
string
required

The ID of the authenticated source User that is requesting to unmute the target User. Unique identifier of this User. The value must be the same as the authenticated user.

Example:

"2244994945"

target_user_id
string
required

The ID of the User that the source User is requesting to unmute. Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.

Example:

"2244994945"

Response

The request has succeeded.

data
object
errors
object[]
Minimum array length: 1