sessions
Resume a session (re-issue hydrationId)
Issues a fresh hydrationId for an existing session. Call this server-side when the user returns after their previous token has expired. The new token must belong to the same org as the session.
POST
Resume a session (re-issue hydrationId)
Authorizations
Your backend license key (is_for_backend_api=True) from the Dromo Dashboard. Never expose this client-side.
Path Parameters
UUID of the session to resume. Returned as sessionId when the session was created. Returns 404 if the session doesn't exist or hasn't been saved within 7 days.
Example:
"1b6acf28-8748-4120-8d7a-4b7846d5e487"
Body
application/json
New token TTL in seconds. Defaults to 21600 (6 hours).
Example:
3600
Previous
Delete a sessionPermanently deletes the session and its saved state. All hydration tokens for this session are immediately invalidated — subsequent widget calls with the old `hydrationId` return 403. Idempotent: returns `{"success": true}` even if the session was already deleted.
Next
Resume a session (re-issue hydrationId)
