Update working file modification date

View as markdown
PUT /actions/working-files/{working_file_id}/modified

Update the modification date of a working file to the current timestamp. Used to track when the file was last modified.

Path parameters

  • working_file_id string(uuid) Required

    Working file unique identifier

Responses

  • 200 application/json

    Working file modification date updated successfully

    Hide response attributes Show response attributes object
    • id string(uuid)

      Working file unique identifier

    • updated_at string(date-time)

      Updated modification timestamp

PUT /actions/working-files/{working_file_id}/modified
curl \
 --request PUT 'http://api.example.com/actions/working-files/a24a6ea4-ce75-4665-a070-57453082c25/modified' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "id": "b35b7fb5-df86-5776-b181-68564193d36",
  "updated_at": "2023-01-01T12:30:00Z"
}