List collaboration invites, filtered by invitee, inviter, and/or subject. Typically used to populate an invitee's inbox.
Parameters
cursor
string
Optional
No description available.
invitee
string
did
Optional
Filter to invites directed at this DID.
inviter
string
did
Optional
Filter to invites authored by this DID.
limit
integer
Optional
No description available.
state
string
Optional
Acceptance-derived state filter.
subjectCollection
string
Optional
Filter to invites where the subject's NSID matches (e.g., `pub.chive.graph.node` for collections).
subjectUri
string
at-uri
Optional
Filter to invites for this subject record.
Output
application/jsoncursor
string
Optional
No description available.
hasMore
boolean
Optional
No description available.
invites
array
Required
No description available.
total
integer
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"invites"
],
"properties": {
"total": {
"type": "integer"
},
"cursor": {
"type": "string"
},
"hasMore": {
"type": "boolean"
},
"invites": {
"type": "array",
"items": {
"ref": "#inviteView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"state": {
"type": "string",
"default": "all",
"description": "Acceptance-derived state filter.",
"knownValues": [
"pending",
"accepted",
"rejected",
"expired",
"all"
]
},
"cursor": {
"type": "string"
},
"invitee": {
"type": "string",
"format": "did",
"description": "Filter to invites directed at this DID."
},
"inviter": {
"type": "string",
"format": "did",
"description": "Filter to invites authored by this DID."
},
"subjectUri": {
"type": "string",
"format": "at-uri",
"description": "Filter to invites for this subject record."
},
"subjectCollection": {
"type": "string",
"description": "Filter to invites where the subject's NSID matches (e.g., `pub.chive.graph.node` for collections)."
}
}
},
"description": "List collaboration invites, filtered by invitee, inviter, and/or subject. Typically used to populate an invitee's inbox."
}