pub.chive.collaboration.listCollaborators

chive.pub

Documentation

List active collaborators on a subject record (DIDs that have both a non-deleted invite from the subject's author and a non-deleted acceptance of that invite).

main query

List active collaborators on a subject record (DIDs that have both a non-deleted invite from the subject's author and a non-deleted acceptance of that invite).

Parameters

subjectUri string at-uri Required

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

Output

Encodingapplication/json
collaborators 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
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "collaborators"
      ],
      "properties": {
        "collaborators": {
          "type": "array",
          "items": {
            "ref": "#collaboratorView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "subjectUri"
    ],
    "properties": {
      "subjectUri": {
        "type": "string",
        "format": "at-uri"
      }
    }
  },
  "description": "List active collaborators on a subject record (DIDs that have both a non-deleted invite from the subject's author and a non-deleted acceptance of that invite)."
}
collaboratorView object

No description available.

Properties

acceptanceUri string at-uri Required

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

acceptedAt string datetime Required

An RFC 3339 formatted timestamp.

did string did Required

A decentralized identifier (DID).

inviteUri string at-uri Required

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

role string Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "inviteUri",
    "acceptanceUri",
    "acceptedAt"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "role": {
      "type": "string"
    },
    "inviteUri": {
      "type": "string",
      "format": "at-uri"
    },
    "acceptedAt": {
      "type": "string",
      "format": "datetime"
    },
    "acceptanceUri": {
      "type": "string",
      "format": "at-uri"
    }
  }
}

Lexicon Garden

@