![]() |
Home | Feedback | Blog | APIs | Developers |
APIs : ZoooS document saving
You can save your document in the format of your choice by submitting the content with an optional ID:
Saving a registered document:
You only need to create a multipart upload form which points to "http://www.zooos.com/view" and contains an upload file field with the name"newfile":
<form enctype="multipart/form-data"
method="post" action="http://www.zooos.com/view">
Upload file:
<input name="newfile" type="file">
<input type="submit" name="Submit" value="Submit" />
</form>
Here's what it looks like:
Pointing to a file on the web:
Pointing to a file on the web is basically the same as uploading a file. The only difference is that the form is not multipart and the input field must have the name "doc":
<form enctype="application/x-www-form-urlencoded" method="get" action="http://www.zooos.com/view">
File:
<input name="doc" type="text">
<input type="submit" name="Submit" value="Submit" />
</form>
Here's how it looks:
Optional parameters :
You can add all optional parameters as described in the "ZoooS Link API":
<form enctype="application/x-www-form-urlencoded" method="get" action="http://www.zooos.com/view">
File:
<input name="doc" type="text">
<input type="hidden" name="download" value="false" />
<input type="submit" name="Submit" value="Submit" />
</form>
Copyright © 2007 ZoooS LLC. All rights reserved.
