pub.chive.notification.listReviewsOnMyPapers

chive.pub

Documentation

List reviews/comments on papers authored by the current user

main query

List reviews/comments on papers authored by the current user

Parameters

cursor string Optional

Pagination cursor

limit integer Optional

Maximum results to return

unreadOnly boolean Optional

Only return unread notifications

Output

Encodingapplication/json
cursor string Optional

No description available.

notifications array Required

No description available.

unreadCount integer Optional

No description available.

Errors

AuthenticationRequired
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
Pagination cursor
Maximum results to return
Only return unread notifications
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthenticationRequired"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "notifications"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "unreadCount": {
          "type": "integer"
        },
        "notifications": {
          "type": "array",
          "items": {
            "ref": "#reviewNotification",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 25,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum results to return"
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor"
      },
      "unreadOnly": {
        "type": "boolean",
        "default": false,
        "description": "Only return unread notifications"
      }
    }
  },
  "description": "List reviews/comments on papers authored by the current user"
}
authorRef object

No description available.

Properties

avatar string uri Optional

A valid URI.

did string did Required

A decentralized identifier (DID).

displayName string Optional

No description available.

handle string Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "did"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "avatar": {
      "type": "string",
      "format": "uri"
    },
    "handle": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    }
  }
}
reviewNotification object

No description available.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

eprintTitle string Optional

No description available.

eprintUri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

isRead boolean Optional

No description available.

preview string Optional

Preview of review content

reviewer ref #authorRef Required

No description available.

uri string at-uri Required

Review AT-URI

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "eprintUri",
    "reviewer",
    "createdAt"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "Review AT-URI"
    },
    "isRead": {
      "type": "boolean"
    },
    "preview": {
      "type": "string",
      "description": "Preview of review content"
    },
    "reviewer": {
      "ref": "#authorRef",
      "type": "ref"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "eprintUri": {
      "type": "string",
      "format": "at-uri"
    },
    "eprintTitle": {
      "type": "string"
    }
  }
}

Lexicon Garden

@