Get information about aggregator services. Can fetch one or multiple aggregators by DID. Authentication optional.
Parameters
Output
Encoding
application/jsonviews
array
Required
Array of aggregator views. Returns aggregatorView if detailed=false, aggregatorViewDetailed if detailed=true.
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": [
"views"
],
"properties": {
"views": {
"type": "array",
"items": {
"refs": [
"social.coves.aggregator.defs#aggregatorView",
"social.coves.aggregator.defs#aggregatorViewDetailed"
],
"type": "union"
},
"description": "Array of aggregator views. Returns aggregatorView if detailed=false, aggregatorViewDetailed if detailed=true."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"dids"
],
"properties": {
"dids": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 25,
"description": "Array of aggregator DIDs to fetch"
},
"detailed": {
"type": "boolean",
"default": false,
"description": "Include usage statistics in response"
}
}
},
"description": "Get information about aggregator services. Can fetch one or multiple aggregators by DID. Authentication optional."
}