Catchup
Given a catchpoint, it starts catching up to this catchpoint
Authorizations
Path parameters
catchpointstring ยท catchpointRequiredPattern:
A catch point
[0-9]{1,10}#[A-Z0-9]{1,53}
Query parameters
minintegerOptional
Specify the minimum number of blocks which the ledger must be advanced by in order to start the catchup. This is useful for simplifying tools which support fast catchup, they can run the catchup unconditionally and the node will skip the catchup if it is not needed.
Responses
200Success
application/json
201Success
application/json
400
Bad Request
application/json
401
Invalid API Token
application/json
408
Request Timeout
application/json
500
Internal Error
application/json
default
Unknown Error
post
POST /v2/catchup/{catchpoint} HTTP/1.1
Host: algo.nownodes.io
X-Algo-API-Token: YOUR_API_KEY
Accept: */*
{
"catchup-message": "text"
}
Given a catchpoint, it aborts catching up to this catchpoint
Authorizations
Path parameters
catchpointstring ยท catchpointRequiredPattern:
A catch point
[0-9]{1,10}#[A-Z0-9]{1,53}
Responses
200Success
application/json
400
Bad Request
application/json
401
Invalid API Token
application/json
500
Internal Error
application/json
default
Unknown Error
delete
DELETE /v2/catchup/{catchpoint} HTTP/1.1
Host: algo.nownodes.io
X-Algo-API-Token: YOUR_API_KEY
Accept: */*
{
"catchup-message": "text"
}
Last updated