Update file
- PUT
- /workspaces
- /:workspace
- /projects
- /:project_name
- /pipelines
- /:pipeline_id
- /files
- /:path
Update the content of an existing file in the pipeline filesystem by its path. The file is saved as a static file of the pipeline.
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"
}'