Preserve attachment URL

I have the need to edit the attachments on objects, without changing the original attachment URL which is displayed via API.

Is this possible, either via api or the app?

@martin By default, no. The system generated attachment URLs would be regenerated when a new attachment is created (which from our system’s pov would happen even if you just ‘updated the existing file’)

The only way to have “static” URL would be to proxy the request for an attachment via a CC Webtask. In this manner you could pass in an object ID (which doesn’t change) to the CC webtask as a URL param which then fetches the necessary attachment and redirects to the latest URL.

I hope this makes sense