Get the manifest for an Ocho plugin.
Parameters
Output
Encoding
application/jsonTry It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"ref": "app.ocho.plugin.defs#manifest",
"type": "ref",
"description": "The plugin manifest, which includes the plugin's metadata, launch asset, and extra information. TODO: Fix these types."
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did",
"platform"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The did of the plugin to retrieve the manifest for"
},
"platform": {
"enum": [
"ios",
"android",
"web"
],
"type": "string",
"description": "The platform for which to retrieve the plugin manifest"
}
}
},
"description": "Get the manifest for an Ocho plugin."
}