Plugin
Plugin Service
Web service endpoints for interacting with Jive plugins.
Example:
Get Plugins
Curl example of getting a list of 4 plugins.
curl -u user:password http://jive.mycompany.com/api/core/v3/admin/plugins?count=4
Jump to
Get Plugin
GET /admin/plugins/{name}
Return the specified plugin for this Jive instance.
Availability:
Available to Jive admins only
Path Parameters:
Name | Type | Required | Description |
---|---|---|---|
name | String | true | Name of the plugin to be returned |
Query Parameters:
Name | Type | Required | Description |
---|---|---|---|
fields | String | false | Names of the fields to be returned |
Retrieves:
Return Status:
HTTP Status Code | Description |
---|---|
200 (OK) | Request was successful |
400 (Bad Request) | Any input field is missing or malformed |
403 (Forbidden) | You are not a Jive admin |
404 (Not Found) | The specified plugin is not registered in this Jive instance |
Get Plugins
GET /admin/plugins
Return all plugins that have been registered in this Jive instance.
Availability:
Available to Jive admins only
Query Parameters:
Name | Type | Required | Description |
---|---|---|---|
fields | String | false | Names of the fields to be returned |
Retrieves:
Return Status:
HTTP Status Code | Description |
---|---|
200 (OK) | Request was successful |
400 (Bad Request) | Any input field is missing or malformed |
403 (Forbidden) | You are not a Jive admin |