Startup Scripts

Get single startup script by ID

get/v1/scripts/{scriptId}

Path parameters

scriptIdstring required
Example:202dc2f8-9ff4-4908-816c-7c49dc437e28

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": "7afd48fb-7dd1-416a-a6de-3545c28a829e",
  "name": "My startup script",
  "script": "#!/bin/bash\n\necho hello world",
  "created_at": "2026-06-12T10:30:00.000Z"
}

Changes