Low-Code API
You can also trigger the actions performed on the InDesign Server via the low-code API from processes, for example. The documentation for the functions can also be found "inline" when you move the mouse over the function in the corresponding fields in the user interface.

The following functions are available:
Functions |
|---|
// Placing assets and XML in a layout template
XpubLowCodeInDesignPlacementProductionCreateV0( string product, string planningnode, retval string productionid)
* @param product coo id of product * @param planningnode coo id of planning node / layout * @param productionid coo id of the newly created * SOLXPUBLISHER@111.100:XpubInDesignPlacementProduction
// Creating a PDF preview for a layout
XpubLowCodeInDesignPreviewProductionCreateV0( string product, string planningnode, retval string productionid)
* @param product coo id of product * @param planningnode coo id of planning node * @param productionid coo id of the newly created * SOLXPUBLISHER@111.100:XpubInDesignPreviewProduction
// Updating an existing layout template to a new production service (updating the InDesign version)
XpubLowCodeInDesignLayoutConversionCreateV0( string product, string productionservice, string planningnode, retval string productionid)
* @param product coo id of product * @param productionservice coo id of production service * @param planningnode coo id of planning node * @param productionid coo id of the newly created * SOLXPUBLISHER@111.100:XpubInDesignLayoutConversion
// Creation of a partial production
XpubLowCodeInDesignPartialProductionCreateV0( string product, string productionservice, string provisionformat, string planningnode, retval string productionid)
* @param product coo id of product * @param productionservice coo id of production service * @param provisionformat coo id of provision format * @param planningnode coo id of planning node * @param productionid coo id of the newly created * SOLXPUBLISHER@111.100:XpubInDesignPartialProduction
// Creation of a total production
XpubLowCodeInDesignTotalProductionCreateV0( string product, string productionservice, string provisionformat, retval string productionid)
* @param product coo id of product * @param productionservice coo id of production service * @param provisionformat coo id of provision format * @param productionid coo id of the newly created * SOLXPUBLISHER@111.100:XpubInDesignTotalProduction |