@@ -28,7 +28,7 @@ RenderforestClient.getTemplates({
2828 .then (console .log ) // handle the success
2929 .catch (console .error ) // handle the error
3030```
31- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-templates.js)
31+ [ See example] ( /samples/templates/get-templates.js )
3232
3333
3434### Get Templates Categories
@@ -44,7 +44,7 @@ RenderforestClient.getTemplatesCategories({ language: 'en' })
4444```
4545- The supported language codes are: ar, de, en, es, fr, pt, ru, tr.
4646
47- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-templates-categories.js)
47+ [ See example] ( /samples/templates/get-templates-categories.js )
4848
4949
5050### Get a Specific Template
@@ -59,7 +59,7 @@ RenderforestClient.getTemplate(701, { language: 'en' })
5959```
6060- The supported language codes are: ar, de, en, es, fr, pt, ru, tr.
6161
62- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-template.js)
62+ [ See example] ( /samples/templates/get-template.js )
6363
6464
6565### Get Color-Presets of the Template
@@ -75,7 +75,7 @@ RenderforestClient.getTemplateColorPresets(701)
7575```
7676- The number of color-presets is varying from template to template.
7777
78- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-template-color-presets.js)
78+ [ See example] ( /samples/templates/get-template-color-presets.js )
7979
8080
8181### Get Pluggable-Screens of the Template
@@ -92,7 +92,7 @@ RenderforestClient.getTemplatePluggableScreens(701)
9292- The number of pluggable-screens is varying from template to template.
9393Pluggable-Screens are grouped by categories.
9494
95- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-template-pluggable-screens.js)
95+ [ See example] ( /samples/templates/get-template-pluggable-screens.js )
9696
9797
9898### Get Recommended-Custom-Colors of the Template
@@ -108,7 +108,7 @@ RenderforestClient.getTemplateRecommendedCustomColors(701)
108108```
109109- The number of recommended-custom-colors is varying from template to template.
110110
111- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-template-recommended-custom-colors.js)
111+ [ See example] ( /samples/templates/get-template-recommended-custom-colors.js )
112112
113113
114114### Get Template-Presets of the Template
@@ -126,7 +126,7 @@ RenderforestClient.getTemplatePresets(701)
126126- The number of template-presets is varying from template to template.
127127Template-presets are ready-made stories created from this template to fasten your video production.
128128
129- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-template-presets.js)
129+ [ See example] ( /samples/templates/get-template-presets.js )
130130
131131
132132### Get SVG Content of the Template
@@ -140,7 +140,7 @@ RenderforestClient.getTemplateSVGContent(701)
140140 .catch (console .error ) // handle the error
141141```
142142
143- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-template-svg-content.js)
143+ [ See example] ( /samples/templates/get-template-svg-content.js )
144144
145145
146146### Get Theme of the Template
@@ -155,7 +155,7 @@ RenderforestClient.getTemplateTheme(701)
155155```
156156- Both lego & non-lego templates might have a theme.
157157
158- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-template-theme.js)
158+ [ See example] ( /samples/templates/get-template-theme.js )
159159
160160
161161
@@ -165,12 +165,11 @@ Retrieves transitions of the template.
165165``` js
166166const RenderforestClient = require (' @renderforest/sdk-node' )
167167
168-
169168RenderforestClient .getTemplateTransitions (701 )
170169 .then (console .log ) // handle the success
171170 .catch (console .error ) // handle the error
172171```
173172
174- [ See example] ( https://github.com/renderforest/renderforest-sdk-node/blob/master /samples/templates/get-template-transitions.js)
173+ [ See example] ( /samples/templates/get-template-transitions.js )
175174
176175** [ ⬆ back to the top] ( #templates-api ) **
0 commit comments