JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.valox.co/api/v1/safe/deploy', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "status": "ok", "updatedAt": "2021-01-01T00:00:00.000Z" }
Returns the deployment status of the Safe account for the authenticated user.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved the deployment status of the Safe account.
The status of the deployment.
ok
not_deployed
processing
failed
"ok"
The timestamp of the last update.
"2021-01-01T00:00:00.000Z"