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-05-08T01:16:15.087Z",
  "warehouse": "2025-05-08T01:16:15.087Z",
  "warehouseAccess": "2025-05-08T01:16:15.087Z",
  "brand": "2025-05-08T01:16:15.087Z",
  "productProperty": "2025-05-08T01:16:15.087Z",
  "productPropertyOption": "2025-05-08T01:16:15.087Z",
  "deliveryProvider": "2025-05-08T01:16:15.087Z",
  "deliveryMethod": "2025-05-08T01:16:15.087Z",
  "timeslot": "2025-05-08T01:16:15.087Z",
  "handling": "2025-05-08T01:16:15.087Z",
  "handlingAction": "2025-05-08T01:16:15.087Z",
  "serviceType": "2025-05-08T01:16:15.087Z",
  "serviceStatus": "2025-05-08T01:16:15.087Z",
  "hourlyRate": "2025-05-08T01:16:15.087Z"
}

Was this helpful?