Documentation for Developers by Developers

Select a Platform

AppData Intro

No matter how big or small, Application Data storage is a fact of life for every application. One of the core principles of Proxomo is to eliminate the need for app developers to create back end databases and web services for every application they create.

Think of Application Data (AppData) storage as a hybrid Key/Value data store.  Here is what an AppData object looks like in JSON format:

{
   "ID":"14Cu2ffTdQG8yDMe",
   "Key":"Sport Name",
   "ObjectType":"User Sports",
   "Value":"Soccer"
}

Notice that can also store an ObjectType as a way to group data (like a category).  That way you can use ObjectType as a search field to retrieve associated groups of data.

Supported Actions

Proxomo provides you with the ability to add, delete, read (get), update, and search AppData records.

Examples

 

XML
<appdata>
   <id>14Cu2ffTdQG8yDMe</id>
   <key>Sport Name</key> 
   <objecttype>User Sports</objecttype>
   <value>Soccer</value>
</appdata>

JSON
{
   "ID":"14Cu2ffTdQG8yDMe",
   "Key":"Sport Name",
   "ObjectType":"User Sports",
   "Value":"Soccer"
}

 


So many developers use Proxomo What are you waiting for?

SIGN ME UP