Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this example a field is added to the page. The available properties per element are listed in the REST Page Models V1.

Info
titleSerialization

The serialization of page element to datamodel is handled by the IApiRendererFactory, this renderer factory can be overridden to customize the serialization. In Java by use of the AquimaApiRendererFactory annotation.

...

Response body

Contains a description of the current page model and language settings. For more information about the page elements see REST Page Models V1.


Code Block
languagejs
{
	language {
    	languageCode: string,                  // Current language of the session
	    patterns: { [string]: string },        // Formatter patterns for dates
	},                                         // Language information of the session
	elements [{
    	type: string,
		key: string,
		name: string,
		styles: string[],
		properties: { [string]: string },
	}]                                         // All elements of the currently active Blueriq page. Further explained under 'REST Page Models'
}


...