Get Snapshotter Epoch Processing Status
GET/internal/snapshotter/epochProcessingStatus
Endpoint to get the epoch processing status report.
NOTE: This endpoint is only available on the Full Node.
Args:
request (Request): The incoming request object.
response (Response): The outgoing response object.
rate_limit_auth_dep (RateLimitAuthCheck, optional): The rate limit authentication check dependency. Defaults to Depends(rate_limit_auth_check).
Returns:
Page[SnapshotterEpochProcessingReportItem]: The paginated epoch processing status report.
Request
Query Parameters
page Page
Possible values: >= 1
Default value: 1
size Size
Possible values: >= 1
and <= 30
Default value: 10
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
items object[]required
epochId Epochid
epochEnd Epochend
transitionStatus object
anyOf
total Total
page Page
Possible values: >= 1
size Size
Possible values: >= 1
pages Pages
{
"items": [
{
"epochId": 0,
"epochEnd": 0,
"transitionStatus": {}
}
],
"total": 0,
"page": 0,
"size": 0,
"pages": 0
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- MOD1
- MOD2
- ]
- ]
detail object[]
loc object[]required
anyOf
string
integer
msg Messagerequired
type Error Typerequired
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...