VPS_updatePostInstallScriptV1
Modify an existing post-install script for a VPS by updating its ID, name, and content through the Hostinger MCP server, enabling precise automation adjustments.
Instructions
Update a specific post-install script.
Use this endpoint to modify existing automation scripts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the script | |
name | Yes | Name of the script | |
postInstallScriptId | Yes | Post-install script ID |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the script",
"type": "string"
},
"name": {
"description": "Name of the script",
"type": "string"
},
"postInstallScriptId": {
"description": "Post-install script ID",
"type": "integer"
}
},
"required": [
"postInstallScriptId",
"name",
"content"
],
"type": "object"
}