Heads up, our devs are blazing ahead—docs are catching up, so some features might not be fully documented yet.

Caching

Caching

Get entity timestamps

get

Retrieve timestamps for entities to be used in caching. The entities refer to database tables, and the timestamp for each entity is updated whenever a record within the table is created, updated, or deleted.

Authorizations
Path parameters
tenantUidstringRequired

Reference to a tenant.

Pattern: ^[A-Za-z0-9-_]+
Responses
200
Example response
application/json
get
GET /v2/tenants/{tenantUid}/caching/entity-timestamps HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Example response

{
  "store": "2025-06-24T18:08:19.748Z",
  "warehouse": "2025-06-24T18:08:19.748Z",
  "warehouseAccess": "2025-06-24T18:08:19.748Z",
  "brand": "2025-06-24T18:08:19.748Z",
  "productProperty": "2025-06-24T18:08:19.748Z",
  "productPropertyOption": "2025-06-24T18:08:19.748Z",
  "deliveryProvider": "2025-06-24T18:08:19.748Z",
  "deliveryMethod": "2025-06-24T18:08:19.748Z",
  "timeslot": "2025-06-24T18:08:19.748Z",
  "handling": "2025-06-24T18:08:19.748Z",
  "handlingAction": "2025-06-24T18:08:19.748Z",
  "serviceType": "2025-06-24T18:08:19.748Z",
  "serviceStatus": "2025-06-24T18:08:19.748Z",
  "hourlyRate": "2025-06-24T18:08:19.748Z"
}

Was this helpful?