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

Get Plugin

GET /admin/plugins/{name}

Return the specified plugin for this Jive instance.

Availability:

Available to Jive admins only

Path Parameters:
NameTypeRequiredDescription
nameStringtrueName of the plugin to be returned
Query Parameters:
NameTypeRequiredDescription
fieldsStringfalseNames of the fields to be returned
Retrieves:
  • Plugin
  • Return Status:
    HTTP Status CodeDescription
    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:
    NameTypeRequiredDescription
    fieldsStringfalseNames of the fields to be returned
    Retrieves:
  • Plugin[]
  • Return Status:
    HTTP Status CodeDescription
    200 (OK)Request was successful
    400 (Bad Request)Any input field is missing or malformed
    403 (Forbidden)You are not a Jive admin