Request body: | JSON data with information about the content to be created. | : | JSON An array of Tags. At least one Tag must be present in the array. Tags must be url-safe, conforming to Regular Expression pattern: [a-zA-Z]+[a-zA-Z0-9-_]* | Optional fields: | | content |
| : | The content, formatted as a base64 encoded text string. |
| Optional fields: | : | The content mime-type, i.e. "image/gif" or "text/plain". If omitted, the content type is set to "text/html" if content is included, or "application/json" if data is included. | |
| value:data | A dictionary of strings or decimal |
| numeric valuevalues. These values can be used for search filtering. Note |
---|
String data values will only be compared with string filter values, and numeric data values will only be compared with numeric filter values. So ensure that numeric values are entered as numbers, i.e. 5.9 not "5.9" . Numeric values are not culture-specific. Use period "." as decimal separator, and do not use thousand separators. |
| | title | A title string. | | activeFrom |
| : | A UTC date specifying the start of the content availability period. | | activeTo |
| : | A UTC date specifying the end of the content availability period. |
Code Block |
---|
| {
"tags": [ "tag1", "tag2" ],
"content": "PGh0bWw+PGJvZHk+TW9yZSBIVE1MIGNvbnRlbnQ8L2JvZHk+PC9odG1sPg==",
"contentType": "text/html",
|
| "content | base64 encoded content string",300px",
"height": "50px",
" |
| value | 6.85.5,
"b": 15
},
"activeFrom": "2014-01-01T01:00Z",
"activeTo": "2014-03-25T23:00Z"
} |
Code Block |
---|
| {
"tags": [ "tag1", "tag2", "tag3" ],
"content": "*base64 encoded image*",
"contentType": "image/png",
"title": "little image.png"
} |
|