API reference · Workspace
Set encryption
Turns tenant-scoped encryption on or off.
- Authentication
- Bearer token
- Retries
- Idempotency-Key
- Body
- application/json
- Version
- 2026-09-03
Both directions are safe and neither is instant.
On takes effect immediately for new writes once a key exists, and the crypto.seal_backlog sweep converts what came before. Nothing becomes unreadable in the meantime: a plaintext value opens as itself.
Off stops new writes being sealed and leaves existing ciphertext sealed, which keeps reading correctly because the key is still there. It does not decrypt anything, and saying otherwise would be the dangerous lie - a customer who switches off, exports, and deletes their workspace would otherwise expect plaintext they never got.
Headers
Idempotency-KeystringA unique key of your choosing, so this request can be retried safely. The first request with a given key executes; every replay returns that first response unchanged, with
Idempotent-Replay: trueset.Generate one key per action, not per session - reusing a key with a different body is refused with 422 rather than silently replaying the wrong answer. Keys are remembered for 24 hours. A request that failed releases its key, so a retry after fixing the payload runs normally.
Up to 255 characters
Request body
application/json · required
EncryptionUpdate
modestringrequiredOne of: platform, tenant
Responses
- 200OKapplication/json
EncryptionState
consequencesarray of stringrequiredmodestringrequiredsealingbooleanrequiredkey_created_atany | null
5 response headers
- RateLimit-Limit
Requests permitted in the current window.
- RateLimit-Remaining
Requests left in the current window. Back off before it reaches 0.
- RateLimit-Reset
Seconds until the current window resets.
- X-API-Version
The dated version of the API contract that served this response, e.g.
2026-09-03. Pin against it; it changes only when a response shape changes incompatibly.- X-Request-ID
Quote this in a support request to identify the call.
- 422Validation error
The shared error envelope, served as
application/problem+jsonwitherror.codeset to validation_error. Its details name each field that failed and why.
Example request
curl -X PUT "https://api.integrable.cloud/api/workspace/encryption" \
-H "Authorization: Bearer $INTEGRABLE_API_KEY" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{
"mode": "platform"
}'Set INTEGRABLE_API_KEY first. The same call from the TypeScript or Python SDK takes the same fields.
Example response
{
"consequences": [
"string"
],
"key_created_at": null,
"mode": "string",
"sealing": true
}Generated from the schema above — the shape is exact, the values are placeholders.
Errors
Failures use one envelope on every endpoint, described in Retries, versioning and limits. The codes you are most likely to meet here:
validation_error· 422 — The payload was well-formed JSON but failed schema validation.unauthenticated· 401 — The request carried no API key, or one the API could not verify.forbidden· 403 — The key is valid, but it is not allowed to do this — either the scope is missing or the resource belongs to another workspace.idempotency_key_reused· 422 — This `Idempotency-Key` was used before, for a request with a different body.rate_limited· 429 — Too many requests in the current window. The limit is per workspace, and some endpoints add a per-bot limit on top.
More Workspace endpoints
- get/api/workspaceGet the workspace
- patch/api/workspaceUpdate workspace
- get/api/workspace/encryptionRead encryption
- get/api/workspace/hierarchyWorkspace hierarchy
- get/api/workspace/invitationsList invitations
- post/api/workspace/invitationsCreate invitation
- delete/api/workspace/invitations/{invitation_id}Revoke invitation
- get/api/workspace/membersList members
- patch/api/workspace/members/{user_id}Change member role
- delete/api/workspace/members/{user_id}Remove member
- get/api/workspace/sub-accountsList sub accounts
- post/api/workspace/sub-accountsCreate sub account
- patch/api/workspace/sub-accounts/{sub_account_id}Update sub account
- delete/api/workspace/sub-accounts/{sub_account_id}Delete sub account
Something here wrong or missing? Tell us — the documentation and the API are maintained by the same person, so a correction is a fix rather than a ticket.