Gets the minimum sync round for the ledger.
/v2/ledger/sync
curl -L \ --url 'https://algo.nownodes.io/v2/ledger/sync' \ --header 'X-Algo-API-Token: YOUR_API_KEY'
{ "round": 1 }
Unset the ledger sync round.
curl -L \ --request DELETE \ --url 'https://algo.nownodes.io/v2/ledger/sync' \ --header 'X-Algo-API-Token: YOUR_API_KEY'
No body
Sets the minimum sync round on the ledger.
/v2/ledger/sync/{round}
The round for which the deltas are desired.
curl -L \ --request POST \ --url 'https://algo.nownodes.io/v2/ledger/sync/{round}' \ --header 'X-Algo-API-Token: YOUR_API_KEY'