WordPress: Plugins
Update WordPress plugins
Update one or more installed plugins to their latest version on a WordPress installation.
Provide the WordPress installation (software) identifier in the path. It can be obtained from GET /api/hosting/v1/wordpress/installations (the id field).
This operation is asynchronous: a successful response only means the update job has been queued.
post/api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/update
Path parameters
usernamestring required
Example:u123456789
softwarestring required
Example:1232456789
WordPress installation (software) identifier
Request body
Example request
{
"plugins": [
"akismet",
"hello-dolly"
]
}Response
Success empty response
Example response
{
"message": "Request accepted"
}