start_application
Start a previously created application container to make it accessible and operational using the application's UUID identifier.
Instructions
Start a previously created application. This will initialize the application container and make it accessible.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uuid | Yes | UUID of the application to start. Obtain this from list_applications or from the create_application response. |
Input Schema (JSON Schema)
{
"properties": {
"uuid": {
"description": "UUID of the application to start. Obtain this from list_applications or from the create_application response.",
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}