Update comment on given working file.

PUT /actions/working-files/{working_file_id}/comment

Path parameters

  • working_file_id string(uuid) Required
application/json

Body Required

  • comment string Required

Responses

  • 200 application/json

    Comment updated on given working file

    Hide response attributes Show response attributes object
    • id string(uuid)
    • comment string
    • updated_at string(date-time)
  • 404

    Working file not found

PUT /actions/working-files/{working_file_id}/comment
curl \
 --request PUT 'http://api.example.com/actions/working-files/a24a6ea4-ce75-4665-a070-57453082c25/comment' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"comment":"Updated lighting and materials"}'
Request examples
{
  "comment": "Updated lighting and materials"
}
Response examples (200)
{
  "id": "string",
  "comment": "string",
  "updated_at": "2025-05-04T09:42:00Z"
}