v52

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-03269339953.6 KB
WordPress: Plugins

Install WordPress plugins

Install one or more plugins on an existing 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). Use GET /api/hosting/v1/wordpress/plugins to discover the plugin slugs available for installation.

This operation is asynchronous: a successful response only means the install job has been queued, not that the plugins are ready.

post/api/hosting/v1/accounts/{username}/wordpress/{software}/plugins/install

Path parameters

usernamestring required
Example:u123456789
softwarestring required
Example:1232456789

WordPress installation (software) identifier

Request body

pluginsstring[] required

Plugin slugs to install. Use GET /api/hosting/v1/wordpress/plugins to discover available slugs.

Example request

{
  "plugins": [
    "akismet",
    "hello-dolly"
  ]
}

Response

Success empty response

messagestring

Example response

{
  "message": "Request accepted"
}