Version 1.1
/Mobile/
Inputs
Input | Input Definition | Required | Detailed Description |
type | determines if the output should be JSON or XML | no | If not passed will assume JSON |
Ouputs
Response | Response Definition | Detailed Description |
statusCode | The status code for the returned result. (In this case should always be Success | |
statusMessage | The message that describes the associated status code. | |
OWNER | Owner of this version | |
MAJOR | The major version | |
MINOR | The minor version | |
BUILD | The build version | |
TYPE | Type can be O for Official, or M for Modified |
MESSAGE | This is a version specific message that the mobile developer can read | |
Sample Outputs
JSON
{"response":
{"status":
{"statusCode":1,
"statusMessage":"Success!"},
"VersionInfo":
{"OWNER":"Darxval",
"MAJOR":1,
"MINOR":1,
"BUILD":0,
"TYPE":"O",
"MESSAGE":"This is an official release from codeplex Version: 1.1.0 Please refer to the documentation here: http:\/\/collabitivemobileapi.codeplex.com\/documentation "}
}
}
XML
<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>
<statusCode>1</statusCode>
<statusMessage>Success!</statusMessage>
</status>
<VersionInfo>
<OWNER>Darxval</OWNER>
<MAJOR>1</MAJOR>
<MINOR>1</MINOR>
<BUILD>0</BUILD>
<TYPE>O</TYPE>
<MESSAGE>This is an official release from codeplex Version: 1.1.0 Please refer to the documentation here: http://collabitivemobileapi.codeplex.com/documentation </MESSAGE>
</VersionInfo>
</response>