Startup Scripts

Get single startup script by ID

get/v1/scripts/{scriptId}

Path parameters

scriptIdstring required
Example:05bbf569-289c-4b48-bf40-1143f2be32b5

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": "5a8f6268-c639-4dbb-9329-814b596a80ab",
  "name": "My startup script",
  "script": "#!/bin/bash\n\necho hello world",
  "created_at": "2026-06-12T10:30:00.000Z"
}

Changes