List community contributions, optionally filtered by status, subject, or contributor.
Parameters
contributor
string
did
Optional
Filter to contributions from a specific user.
cursor
string
Optional
No description available.
limit
integer
Optional
No description available.
status
string
Optional
No description available.
subject
string
at-uri
Optional
Filter to contributions targeting a specific entity.
Output
Encoding
application/jsoncontributions
array
Required
No description available.
cursor
string
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": [
"contributions"
],
"properties": {
"cursor": {
"type": "string"
},
"contributions": {
"type": "array",
"items": {
"ref": "games.gamesgamesgamesgames.getContribution#contributionView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 25,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"status": {
"type": "string",
"knownValues": [
"pending",
"approved",
"denied",
"needsRevision"
]
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "Filter to contributions targeting a specific entity."
},
"contributor": {
"type": "string",
"format": "did",
"description": "Filter to contributions from a specific user."
}
}
},
"description": "List community contributions, optionally filtered by status, subject, or contributor."
}