'description'=>'Get a rendered shortcode for a site. Note: The current user must have publishing access.',
'group'=>'sites',
'stat'=>'shortcodes:render',
'method'=>'GET',
'path'=>'/sites/%s/shortcodes/render',
'path_labels'=>array(
'$site'=>'(int|string) Site ID or domain',
),
'query_parameters'=>array(
'shortcode'=>'(string) The query-string encoded shortcode string to render. Required. Only accepts one at a time.',
),
'response_format'=>array(
'shortcode'=>'(string) The shortcode that was passed in for rendering.',
'result'=>'(html) The rendered HTML result of the shortcode.',
'scripts'=>'(array) An array of JavaScript files needed to render the shortcode. Returned in the format of <code>{ "script-slug" : { "src": "http://example.com/file.js", "extra" : "" } }</code> where extra contains any neccessary extra JS for initializing the source file and src contains the script to load. Omitted if no scripts are neccessary.',
'styles'=>'(array) An array of CSS files needed to render the shortcode. Returned in the format of <code>{ "style-slug" : { "src": "http://example.com/file.css", "media" : "all" } }</code>. Omitted if no styles are neccessary.',