Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Public content search

 

Endpoint ID:

9005

Method:

URL:

POST /data/content/search

Request body:

JSON data with information about the content to be created.

Required fields:
 

compareValue1:

 

 

compareValue2:

 

Optional fields:
 tags 
 fromDate 
 limit:Defined the type of content. If nothing is passed then default value is set to "text/html".
 offset:Optional value
 compare:

Optional date value defining content active start date. The date must be in UTC, for example "2014-01-01T01:00Z".

Example
{
   "tags": [ "tag1", "tag2" ],
   "fromDate": "2014-01-01T01:00Z",            // optional - ISO UTC date
   "limit": 2,                                 // optional - default to 1
   "offset": 10,                               // optional - default to 0
   "compare": "between",                       // optional ["=", "<", ">", "<=", ">=",
                                               //    "between", "empty", "notempty"]
   "compareValue1": 5.1,                       // required for "compare":
                                               //    ["=", "<", ">", "<=", ">=", "between"]
   "compareValue2": 5.9                        // required for "compare": "between"
}

Response body:

JSON data with information about the content created.

Example
{
   "content": [
      {
         "tags": [ "tag1", "tag2" ],
         "contentType": "text/html",
         "content": "base64 encoded content string",
         "created": "2014-02-10T12:53Z",
         "value": 19.5
      },
      {
         "tags": [ "tag1", "tag2" ],
         "contentType": "text/html",
         "content": "base64 encoded content string",
         "created": "2014-02-02T15:02Z"
      }
   ],
   "paging": {
      "offset": 10,
      "count": 2,
      "more": true
   }
}

Status codes:

200

OK

   

 

 

 

  • No labels