Plugin Update Configuration
Update the configuration for a plugin. Each plugin defines its own set of configuration parameters in its manifest and this endpoint accepts any object validated against that schema. When a valid configuration is received, it is sent to the plugin via RPC and the plugin is expected to apply the new configuration to itself internally.
Update the configuration for a plugin. Each plugin defines its own set of configuration parameters in its manifest and this endpoint accepts any object validated against that schema. When a valid configuration is received, it is sent to the plugin via RPC and the plugin is expected to apply the new configuration to itself internally.
/plugins/{plugin_instance_id}/configurationAuthorization
browser In: cookie
Path Parameters
Plugin ID.
xidRequest Body
application/json
Response Body
application/json
application/json
curl -X PATCH "https://loading/api/plugins/cc5lnd2s1s4652adtu50/configuration" \ -H "Content-Type: application/json" \ -d '{}'{}{
"error": "string",
"message": "string",
"suggested": "string",
"metadata": {}
}Plugin Set Active State PATCH
Change the active state of a plugin. This operation only applies to supervised plugins. - `active`: starts the supervised plugin process. - `inactive`: stops the supervised plugin process. External plugins cannot be managed with this endpoint and will return a bad request error.
Plugin Update Manifest PATCH
Update the manifest for a plugin. This is used for development of plugins where the manifest may change frequently and it's useful to be able to update it without re-uploading the entire plugin bundle. This only works for External plugins that were created by uploading a manifest directly. It does not work for Supervised plugins.