Scripts
Deploy script
Deploy a script with updated files, creating a new version
post/v1/scripts/{script_id}/deploy
Path parameters
script_idstring required
The unique identifier of the script
Example:s_abc123
The unique identifier of the script
Headers
x-api-keystring nullable
Skyvern API key for authentication. API key can be found at https://app.skyvern.com/settings.
Skyvern API key for authentication. API key can be found at https://app.skyvern.com/settings.
Request body
Example request
{
"files": [
{
"path": "src/main.py"
}
]
}Response
Successful Response
Example response
{
"script_id": "s_abc123",
"version": 1
}