Security & Privacy

LetMeTakeCare asks for access to your Smartsheet account, so you are entitled to know exactly what that access is used for and what happens to your data. This page answers that in plain English โ€” no vague assurances, no “industry-standard security” filler.

Last updated 8 August 2026

The short version

  • Your sheet data is never stored. Sheets are read to build a preview, changes are written back, and the contents are discarded when the request ends. Nothing from your sheets is saved to our database.
  • Uploaded spreadsheets never touch our disk. An uploaded .xlsx is processed entirely in memory and the updated copy is streamed straight back to your browser.
  • Your access token is encrypted and held server-side. It is never placed in your browser, and it is deleted the moment you log out.
  • Logging out revokes the token at Smartsheet. Not just locally โ€” the token stops working entirely.
  • We store very little: your email address and display name, and a per-day counter of how many bulk write operations you have run.

1. Which Smartsheet permissions we ask for, and why

When you connect, Smartsheet shows you a consent screen listing the permissions below. The consent screen is served by Smartsheet, not by us โ€” we never see your Smartsheet password, and we cannot grant ourselves a permission you did not approve.

Smartsheet’s permissions are granular rather than hierarchical: each one grants exactly the capability it names and nothing more. The names in the table below are Smartsheet’s own, defined in their OAuth documentation โ€” so you can check our explanations against the source rather than taking our word for it. Smartsheet documents 18 scopes in total; we request six.

Smartsheet OAuth permissions requested and their purpose
PermissionWhat it lets us doWhy it is needed
READ_SHEETS Read the contents of sheets you have access to Every tool previews before it changes anything. Reading is how the dry run shows you the exact before/after and the row counts.
WRITE_SHEETS Change cell values and delete rows The actual work: applying a find & replace, filling looked-up values, removing duplicate or empty rows.
CREATE_SHEETS Create new sheets Tools that produce a new sheet rather than editing yours โ€” the merge target, the generated bank-holiday sheet, and the finance ledger.
ADMIN_SHEETS Modify a sheet’s columns Column-level operations that cell access cannot perform: renaming columns and updating a dropdown column’s list of options.
ADMIN_WORKSPACES List and organise workspaces and folders Browsing your workspaces so you can pick which sheets a tool runs against, and creating the folder a generated sheet is filed into.
SHARE_SHEETS Change who a sheet is shared with Used only by the Sharing Auditor when you explicitly choose to revoke a share or downgrade an Editor to Viewer. Reading the audit needs no such permission.

One optional extra permission

READ_USERS โ€” which lets us list the users in your Smartsheet organisation โ€” is not part of the standard connection. It is only requested if you opt in to the User & License Report, which requires a separate consent screen. It was deliberately kept off the default list: it is only useful to system administrators, and putting a directory permission in front of every user who will never use it is a poor trade.

What we deliberately do not ask for: we do not request permission to add or remove users, manage groups, or access your Smartsheet account settings.

2. Is your OAuth token stored, and how is it protected?

Yes, it is stored โ€” it has to be, or you would have to re-authorise on every single click. Here is precisely how:

  • It is held on our server, not in your browser. The token lives in our Redis store. Your browser only ever holds an opaque random session id that means nothing on its own and cannot be turned back into a token.
  • It is encrypted before it is stored. The token is encrypted with Fernet (AES-128-CBC with an HMAC signature) before it is written. Someone who obtained a dump of the database would not get usable tokens out of it.
  • It expires automatically. The stored token is deleted 30 days after it is issued, whether or not you log out.
  • It can be revoked instantly. Because the token is server-side, deleting it immediately kills access for every device โ€” something a token kept in a browser cookie could never guarantee.
  • Your login session is separate and shorter. The session cookie is valid for 12 hours of inactivity, and is set HttpOnly (unreadable by JavaScript), Secure (HTTPS only), and SameSite=Lax (not sent on cross-site requests).

Smartsheet access tokens expire after about seven days โ€” 604,799 seconds, per Smartsheet’s OAuth documentation. Rather than forcing you to reconnect every week, we store the accompanying refresh token โ€” encrypted the same way โ€” and use Smartsheet’s standard refresh grant to renew the access token transparently in the background.

3. Are your sheet contents stored, or processed transiently?

Transiently. Sheet contents are never written to our database.

The lifecycle of a bulk operation is: you pick the sheets, we fetch them from Smartsheet over HTTPS, compute the preview in memory, show you exactly what would change, and โ€” once you confirm โ€” write the changes back to Smartsheet. When the request finishes, the sheet data is gone from memory. There is no copy, no cache of your cell values, and no backup on our side.

The one thing that outlives the request is a job status record. Because a large bulk apply runs in the background, we keep a small record so your browser can poll for progress. It holds counts and status โ€” how many rows were written, whether the job finished, and any error message โ€” and it is deleted automatically one hour later.

The Sheet Backup tool works the same way: the zip containing data.csv, comments and attachments is assembled entirely in memory and streamed to your browser. We never keep a copy.

4. What happens to uploaded Excel and CSV files?

When you use Sync to Excel, your workbook is read directly into memory, updated there, and the result is streamed back to you as a download. It is never written to disk on our server โ€” there is no uploads folder, no temporary copy left behind, and nothing to clean up. When the response has been sent, the file no longer exists anywhere in our system.

File attachments are the one case that briefly touches disk. When you attach a file to a Smartsheet row through our uploader, the file is written to a temporary location purely because the Smartsheet upload API requires a file handle, and it is deleted immediately once the upload completes โ€” including if the upload fails.

5. What we actually store, and for how long

The complete list. If it is not in this table, we do not keep it.

Data stored by LetMeTakeCare and its retention period
WhatWhyKept for
Email address and display name Identifies your account. Taken from your Smartsheet profile when you first connect. Until you ask us to remove it
Smartsheet access & refresh token Lets tools act on your behalf without re-authorising every click. Encrypted. Deleted on logout; auto-expires after 30 days
Login session Keeps you signed in between pages. 12 hours of inactivity
Daily activity counter A per-day count of bulk write operations, enforcing the fair-use limit. A number and a date โ€” not a record of what you did. Rolling daily counter
Background job status Progress and result counts so your browser can poll a running bulk job. 1 hour, then deleted automatically
Server logs Diagnosing errors. Bulk job logs record counts, durations and outcomes โ€” deliberately never cell values. Per our hosting provider’s retention
Your sheet contents Not stored at all
Uploaded spreadsheets Not stored at all
Payment details Never collected

6. AI features and your data

A small number of optional features use an AI model: the scratchpad’s rewrite, summarise and tag-suggestion actions, the dashboard copilot, and the weekly report generator. When you trigger one of these, the relevant text is sent to our AI provider (Google’s Gemini via Google AI Studio, or OpenRouter, depending on configuration) to generate the response.

This matters, so to be explicit: the bulk Smartsheet tools do not use AI and send nothing to any AI provider. Find & Replace, Remove Duplicates, Cross-Sheet Lookup, Clean Up Sheets, Rename Columns, Merge Sheets, Sharing Auditor, Sheet Backup and Sync to Excel are all ordinary deterministic code. AI is only ever involved in the features named above, and only when you actively invoke them.

7. Who else your data passes through

We run on hosted infrastructure rather than our own hardware. The providers involved are:

  • Smartsheet โ€” your data’s actual home; we are a client of their API. Their handling of it is governed by their own Privacy Notice, and their security posture, certifications and compliance programmes are documented in the Smartsheet Trust Center.
  • Heroku โ€” hosts the application and the Redis store holding encrypted tokens and job records.
  • Appwrite โ€” stores the account record (your email address and display name).
  • Google AI Studio / OpenRouter โ€” only for the AI features described above.
  • Google Fonts โ€” serves the web font used across the site.

We do not sell your data, share it with advertisers, or use it to train any model. The site runs no advertising trackers and no third-party analytics.

8. Encryption in transit and at rest

In transit

Every connection is HTTPS. The site sends an HSTS header with a one-year duration covering all subdomains, which instructs your browser to refuse to connect over plain HTTP even if a link tries to. All calls to the Smartsheet API are likewise made over HTTPS.

At rest

Your Smartsheet tokens are encrypted with Fernet (AES-128-CBC plus an HMAC signature that detects tampering) before they are written to storage. Since your sheet contents and uploaded files are never written to storage at all, there is no data-at-rest question for them to answer.

The application also sets a strict Content Security Policy, and a nonce-based script policy that blocks injected scripts from executing โ€” the defence that matters most for a tool holding an API token.

9. What disconnecting actually does

Clicking Log Out performs four distinct actions, in this order:

  • Revokes the token at Smartsheet. We call Smartsheet’s token revocation endpoint, so the token stops working immediately and permanently โ€” not merely on our side.
  • Deletes the stored token from our Redis store.
  • Destroys the server-side session held by Appwrite.
  • Clears the session cookie in your browser.

Afterwards, LetMeTakeCare has no means of reaching your Smartsheet account. Reconnecting requires a fresh trip through Smartsheet’s consent screen.

You do not have to take our word for it

You can revoke our access from your own side, without involving us at all. In Smartsheet, go to Account → Apps & Integrations, find LetMeTakeCare, and select revoke โ€” Smartsheet documents the process in Review, manage, and sign in to apps and integrations. That cuts off access at the source, which is the guarantee that matters: it does not depend on us behaving correctly.

What logging out does not do: it does not undo changes already applied to your sheets โ€” those are real edits in Smartsheet, and you should use Smartsheet’s own cell history to revert them. It also does not delete your account record (your email address and display name); see below.

10. Deleting your data

Most of what we hold removes itself. Logging out revokes and deletes your token; job records expire within the hour; sessions lapse after 12 hours; sheet contents and uploaded files were never kept in the first place. Logging out therefore removes essentially everything that matters.

What remains is the account record โ€” your email address and display name โ€” and your activity counter. There is currently no self-service delete button for these. To have them erased, contact us using the details below and we will remove them. If you would like confirmation once it is done, say so in your message and we will reply.

11. Who operates LetMeTakeCare

LetMeTakeCare is built and operated by Daniel, an independent developer based in the United Kingdom. It is not a venture-backed company and has no staff beyond its developer โ€” which is precisely why this page spells out the technical specifics rather than gesturing at a compliance department.

In data-protection terms, that developer is the data controller for the small amount of personal data described in section 5. If you are in the UK or the EU, you have the right to access, correct, or request erasure of that data, and to complain to your data protection authority โ€” in the UK, the Information Commissioner’s Office.

12. Contact

For any question about security, privacy, or data deletion โ€” or anything else โ€” use the contact form. It reaches the developer directly. Please say if your message concerns privacy or security so it can be prioritised.

If you believe you have found a security vulnerability, please report it through the same form with enough detail to reproduce it, and allow a reasonable window for a fix before disclosing it publicly. Reports made in good faith are welcome and will not be met with legal threats.

13. Terms of use

LetMeTakeCare is provided as-is, without warranty. The bulk tools make real, immediate changes to your Smartsheet data, which is why every one of them shows a preview before it writes and why we recommend running the Sheet Backup tool before a large operation. You remain responsible for the changes you choose to apply, and Smartsheet’s own cell history is the authoritative record for reverting them.

We may suspend access that abuses the service โ€” for instance attempting to bypass the fair-use limits on bulk write operations. Your use of Smartsheet itself remains governed by your own agreement with Smartsheet, to which we are not a party.

As a third-party application built on the Smartsheet API, LetMeTakeCare is also bound by Smartsheet’s Developer Agreement, which sets requirements on developers for data security and the handling of end-user information. That is an obligation we owe to Smartsheet in addition to the commitments made on this page.

This page is the current, authoritative statement of how LetMeTakeCare handles your data. Material changes will be reflected here along with the revision date at the top.

14. References

Every technical claim on this page can be checked against Smartsheet’s own documentation. If anything here contradicts these sources, trust them and tell us so we can correct it.

LetMeTakeCare is an independent third-party application. It is not affiliated with, endorsed by, or operated by Smartsheet Inc., and linking to their documentation above does not imply otherwise.

Ready to connect?

You will see Smartsheet’s own consent screen listing exactly the permissions described above.

Connect Smartsheet