Documentation for Developers by Developers

Select a Platform

AppData

AppData is used throughout Proxomo for data storage.  Think of AppData as a hybrid Key/Value data store.  In addition to the standard Key/Value information you can also store an ObjectType as a way to group data (think of it like a category).  When you search Proxomo for information you can use ObjectType as a search field to retrieve groups of data.

Data Fields

Name Data Type Required Description
ID String Yes Proxomo assigned unique identifier
Key String Yes Developer defined identifier
Value String Yes Developer defined value
ObjectType String No Developer defined category identifier 

 

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