Difference between revisions of "GetContentSelection"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Api_Method_Spec| | {{Api_Method_Spec| | ||
− | Description= | + | Description= This method returns content from a determinated Id. |
|Parameters= | |Parameters= | ||
Line 17: | Line 17: | ||
}} | }} | ||
− | |Returns= | + | |Returns=Returns a JSON object containing an array of content. |
− | + | ||
+ | '''Example:''' | ||
+ | |||
+ | { | ||
+ | : "StatusCode": 0, | ||
+ | : "Severity": 1, | ||
+ | : "StatusMessage": "OK", | ||
+ | : "Content": [ | ||
+ | : { | ||
+ | : "Type": 0, | ||
+ | : "Field": 0, | ||
+ | : "Value": "1" | ||
+ | : } | ||
+ | : { Rest of contents } | ||
+ | : ] | ||
+ | } | ||
|Exceptions= | |Exceptions= | ||
Line 33: | Line 48: | ||
|SeeAlso= | |SeeAlso= | ||
− | + | ||
}} | }} |
Latest revision as of 08:24, 22 September 2015
Description
This method returns content from a determinated Id.
Parameters
- token (String, required)
- A valid token for identifying the API session context. The token can be anonymous or logged.
- selectionId (int, required)
Returns
Returns a JSON object containing an array of content.
Example:
{
- "StatusCode": 0,
- "Severity": 1,
- "StatusMessage": "OK",
- "Content": [
- {
- "Type": 0,
- "Field": 0,
- "Value": "1"
- }
- { Rest of contents }
- ]
}
Exceptions
TO BE COMPLETED
Caching
This method is cached as default.
Known issues
None
Version history
TO BE COMPLETED