Startup Scripts

Get single startup script by ID

get/v1/scripts/{scriptId}

Path parameters

scriptIdstring required
Example:cb9cc853-f748-4b6d-84c5-0d092b78200f

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": "5f93d127-277f-461f-9065-482850229c94",
  "name": "My startup script",
  "script": "#!/bin/bash\n\necho hello world",
  "created_at": "2026-06-12T10:30:00.000Z"
}

Changes