JavaScript
const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: JSON.stringify({reason: '<string>'}) }; fetch('https://api.keystoneos.xyz/v1/admin/settlements/{settlement_id}/retry', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "settlement_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "previous_state": "<string>", "current_state": "<string>", "action": "<string>" }
Re-enqueue the settlement engine to retry advancing the settlement from its current state. Only valid for non-terminal settlements.
Auth0 JWT access token. See Authentication for details.
Request to re-enqueue the settlement engine.
Successful Response
Response for all intervention actions.