Reset Workspace
Reset Workspace on the Account
This method is only available on Sandbox Workspaces
post
https://connect.getseam.com
/workspaces/reset_sandbox
Reset the sandbox on this workspace
Python
Javascript
Ruby
seam.workspaces.reset_sandbox()
# None
await seam.workspaces.resetSandbox()
// { message: 'Successfully reset workspace sandbox', ok: true }
seam.workspaces.reset_sandbox
# {"message"=>"Successfully reset workspace sandbox", "ok"=>true}
This method doesn't take any parameters.
This section shows the JSON response returned by the API. Since each language encapsulates this response inside objects specific to that language and/or implementation, the actual type in your language might differ from what’s written here.
JSON
{
"message": "Successfully reset workspace sandbox",
"ok": true
}
Last modified 1mo ago