Handles a request to get a tag's preview data and editor URL
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRContentAPI | SRContentAPI | POST | Yes. |
See topic Common Parameters.
Required. The string of content to be rendered by the Luminate Online template engine within the context of the caller's session. This may include one or more Session Tags and/or Conditional Tags, exactly as would be used within pages on the Luminate Online site. This string will be validated for syntax and returned in the response, with the validated pre-rendered string in the "source" field and the validated rendered string in the "preview" field.
Type xsd:string.
See topic Common Parameters.
Required. The string of content to be rendered by the Luminate Online template engine within the context of the caller's session. This may include one or more Session Tags and/or Conditional Tags, exactly as would be used within pages on the Luminate Online site. This string will be validated for syntax and returned in the response, with the validated pre-rendered string in the "source" field and the validated rendered string in the "preview" field.
Type xsd:string.
See topic HTTP Status Codes.
XML response<?xml version="1.0" encoding="UTF-8"?> <getTagInfoResponse xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <preview>devnull@convio.com</preview> <description>Site Configuration: SITE_CONTACT_EMAIL</description> <source><convio:session param="SITE_CONTACT_EMAIL" name="100"></convio:session></source> </getTagInfoResponse>JSON response
{"getTagInfoResponse":{"source":"<convio:session param=\"SITE_CONTACT_EMAIL\" name=\"100\"><\/convio:session>","preview":"devnull@convio.com","description":"Site Configuration: SITE_CONTACT_EMAIL"}}