Startup Scripts

Get single startup script by ID

get/v1/scripts/{scriptId}

Path parameters

scriptIdstring required
Example:509e839f-a1ae-43ea-96ab-513e9ef95e4c

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": "eceb292b-d9a8-40d6-a9cc-2cfd05a14157",
  "name": "My startup script",
  "script": "#!/bin/bash\n\necho hello world",
  "created_at": "2026-06-12T10:30:00.000Z"
}

Changes