Execute account recovery
POST
/api/v1/recovery/execute/{request_id}
const url = 'http://localhost:3001/api/v1/recovery/execute/example';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"new_wallet_signature":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:3001/api/v1/recovery/execute/example \ --header 'Content-Type: application/json' \ --data '{ "new_wallet_signature": "example" }'Complete recovery process after time-lock and approvals
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”request_id
required
string
Recovery request ID
Request Bodyrequired
Section titled “Request Bodyrequired”Signature from new wallet
Media typeapplication/json
object
new_wallet_signature
string
Examplegenerated
{ "new_wallet_signature": "example"}Responses
Section titled “Responses”OK
Media typeapplication/json
object
message
string
success
boolean
Examplegenerated
{ "message": "example", "success": true}Bad Request
Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{ "error": "example", "success": true}Unauthorized
Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{ "error": "example", "success": true}Not Found
Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{ "error": "example", "success": true}Internal Server Error
Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{ "error": "example", "success": true}