Update file
- PUT
- /workspaces
- /:workspace
- /projects
- /:project_name
- /pipelines
- /:pipeline_id
- /files
- /:path
Updates a file in the pipeline filesystem and marks it as a static file
Request example
curl -X PUT "https://api.buddy.works/workspaces/:workspace/projects/:project_name/pipelines/:pipeline_id/files/:path" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"content": "dXBkYXRlZCBjb250ZW50"
}'