Response Format: JSON
JSON, or JavaScript Object Notation, is a simple machine-readable data-interchange format.
It makes constructing API applications in JavaScript easy (though it can be used from other languages too!).
For more information about JSON, visit
json.org.
To return an API response in JSON format, send a parameter "returnformat" in the request with a value of "json".
The response will look something like this:
{"Status":"OK","ErrorText":null,"Data":"OK"}
Each element is represented by a JSON object.
Element attributes are represented by an object member with a string value.
Child elements are represented by an object member with an object value.
Array elements are represented with brakets around the entire array, and commas seperating each entry.