app.tempomusic.moderation.listModerationNotices

lexicons.tempomusic.fan

Documentation

List the authenticated user's own moderation notices (takedown, suspension, ban), newest first. Prepared for future client consumption; delivery channels (push/email) are out of scope. The subject is always the caller — there is no parameter to read another user's notices.

main query

List the authenticated user's own moderation notices (takedown, suspension, ban), newest first. Prepared for future client consumption; delivery channels (push/email) are out of scope. The subject is always the caller — there is no parameter to read another user's notices.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

items array Required

No description available.

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "items"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "#noticeView",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string",
          "maxLength": 1024
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string",
        "maxLength": 1024
      }
    }
  },
  "description": "List the authenticated user's own moderation notices (takedown, suspension, ban), newest first. Prepared for future client consumption; delivery channels (push/email) are out of scope. The subject is always the caller — there is no parameter to read another user's notices."
}
noticeView object

No description available.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

id integer Required

No description available.

message string Optional

No description available.

maxLength: 5000 bytesmaxGraphemes: 500 graphemes
noticeType string Required

No description available.

maxLength: 100 bytes
Known values: takedown, suspension, ban
readAt string datetime Optional

An RFC 3339 formatted timestamp.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "noticeType",
    "createdAt"
  ],
  "properties": {
    "id": {
      "type": "integer"
    },
    "readAt": {
      "type": "string",
      "format": "datetime"
    },
    "message": {
      "type": "string",
      "maxLength": 5000,
      "maxGraphemes": 500
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "noticeType": {
      "type": "string",
      "maxLength": 100,
      "knownValues": [
        "takedown",
        "suspension",
        "ban"
      ]
    }
  }
}

Lexicon Garden

@