| name | type | description |
|---|---|---|
| Authorization | header | Bearer token, see https://dev.d4science.org/how-to-access-resources |
| Content-Type | header | application/json |
| media type | data type | description |
|---|---|---|
| application/json | array of PluginDescriptor (JSON) |
GET /srv/plugins
Content-Type: */*
Accept: application/json
Authorization: ...
...
HTTP/1.1 200 OK
Content-Type: application/json
[ {
"id" : "...",
"description" : "...",
"label" : "...",
"type" : "...",
"version" : {
"originalValue" : "...",
"suffixTokens" : [ "...", "..." ],
"type" : "IVY",
"build" : "...",
"stable" : true,
"minor" : 12345,
"patch" : 12345,
"major" : 12345,
"value" : "..."
}
} ]
| name | type | description |
|---|---|---|
| Authorization | header | Bearer token, see https://dev.d4science.org/how-to-access-resources |
| Content-Type | header | application/json |
| pluginID | path |
| media type | data type | description |
|---|---|---|
| application/json | PluginDescriptor (JSON) |
GET /srv/plugins/{pluginID}
Content-Type: */*
Accept: application/json
Authorization: ...
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"id" : "...",
"description" : "...",
"label" : "...",
"type" : "...",
"version" : {
"originalValue" : "...",
"suffixTokens" : [ "...", "..." ],
"type" : "IVY",
"build" : "...",
"stable" : true,
"minor" : 12345,
"patch" : 12345,
"major" : 12345,
"value" : "..."
}
}