Startup Scripts

Get single startup script by ID

get/v1/scripts/{scriptId}

Path parameters

scriptIdstring required
Example:5c12dbbd-da7a-490c-b17a-a27177f229ea

Response

Return startup script with specific ID

idstring required

Script ID

namestring required

Script name

scriptstring required

Script content

created_atstring required

Script creation date

Example response

{
  "id": "a0267f50-6e86-4088-8636-74e2c6a994bc",
  "name": "My startup script",
  "script": "#!/bin/bash\n\necho hello world",
  "created_at": "2026-06-12T10:30:00.000Z"
}

Changes