curl --request PATCH \
--url https://api.cloud.onidel.com/startup_scripts/{script_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Updated Script Name",
"content": "#!/bin/bash\napt-get update && apt-get install -y nginx certbot",
"team_id": "c1d45377-b2a9-4407-ab8d-6909c34dfaac"
}
'