pub.chive.notification.listEndorsementsOnMyPapers

chive.pub

Documentation

List endorsements on papers authored by the current user

main query

List endorsements on papers authored by the current user

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

unreadOnly boolean Optional

No description available.

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
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": "#endorsementNotification",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 25,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "unreadOnly": {
        "type": "boolean",
        "default": false
      }
    }
  },
  "description": "List endorsements 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"
    }
  }
}
endorsementNotification object

No description available.

Properties

comment string Optional

No description available.

contributions array of string Required

No description available.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

endorser ref #authorRef Required

No description available.

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.

uri string at-uri Required

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

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "eprintUri",
    "endorser",
    "contributions",
    "createdAt"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "isRead": {
      "type": "boolean"
    },
    "comment": {
      "type": "string"
    },
    "endorser": {
      "ref": "#authorRef",
      "type": "ref"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "eprintUri": {
      "type": "string",
      "format": "at-uri"
    },
    "eprintTitle": {
      "type": "string"
    },
    "contributions": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}

Lexicon Garden

@