Update working file comment
Update the comment on a specific working file. Comments provide context about changes made to the working file.
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": "b35b7fb5-df86-5776-b181-68564193d36",
"comment": "Updated lighting and materials",
"updated_at": "2023-01-01T12:30:00Z"
}