Skip to main content
GET
/
data
/
projects
/
{projectId}
/
cache
/
{cacheId}
/
executionHistory
Get Cache Execution History
curl --request GET \
  --url https://partner.peaka.studio/api/v1/data/projects/{projectId}/cache/{cacheId}/executionHistory \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "executionMode": "<string>",
    "status": "<string>",
    "error": {},
    "progress": {
      "numberOfCachedRecords": 123,
      "numberOfInsertedRecords": 123,
      "numberOfUpdatedRecords": 123,
      "numberOfDeletedRecords": 123,
      "lastOffset": "<string>",
      "lastCacheTxId": "<string>"
    },
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "finishedAt": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.peaka.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use the Authorization header with the value 'Bearer ' to authenticate. Partner API Keys have full access; Project API Keys are limited to their project scope. Learn more: https://docs.peaka.com/api-reference/authentication

Path Parameters

projectId
string
required

The unique identifier of the project that owns the cache

cacheId
string
required

The unique identifier of the cache whose history is requested (UUID format)

Query Parameters

limit
integer<int32>
default:10

Maximum number of execution records to return. Defaults to 10.

offset
integer<int32>
default:0

Number of records to skip from the start of the result set, used for pagination. Defaults to 0.

Response

Execution history retrieved successfully. Returns an empty array if no executions exist for this cache.

id
string
executionMode
string
status
string
error
object
progress
object
createdAt
string<date-time>
updatedAt
string<date-time>
finishedAt
string<date-time>