# social.colibri.actor.listMutes

> Published by [colibri.social](https://lexicon.garden/identity/did:plc:mprdjqjluoswa7awzggaggj3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.actor.listMutes)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.actor.listMutes/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.actor.listMutes/examples)

## Definitions

### `social.colibri.actor.listMutes`

**Type**: `query`

Lists the subjects the authenticated user has muted.

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `mutes` | `array` | Yes |  |

#### Errors

- **AuthRequired**: Missing, malformed, or unverifiable service auth.

### `social.colibri.actor.listMutes#mute`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | AT-URI of the mute record. |
| `subject` | `string` | Yes | The muted subject (a DID). |

## Raw Schema

```json
{
  "id": "social.colibri.actor.listMutes",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "AuthRequired",
          "description": "Missing, malformed, or unverifiable service auth."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "mutes"
          ],
          "properties": {
            "mutes": {
              "type": "array",
              "items": {
                "ref": "lex:social.colibri.actor.listMutes#mute",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Lists the subjects the authenticated user has muted."
    },
    "mute": {
      "type": "object",
      "required": [
        "uri",
        "subject"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT-URI of the mute record."
        },
        "subject": {
          "type": "string",
          "description": "The muted subject (a DID)."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
