@@ -28,7 +28,7 @@ RenderforestClient.getTemplates({
28
28
.then (console .log ) // handle the success
29
29
.catch (console .error ) // handle the error
30
30
```
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 )
32
32
33
33
34
34
### Get Templates Categories
@@ -44,7 +44,7 @@ RenderforestClient.getTemplatesCategories({ language: 'en' })
44
44
```
45
45
- The supported language codes are: ar, de, en, es, fr, pt, ru, tr.
46
46
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 )
48
48
49
49
50
50
### Get a Specific Template
@@ -59,7 +59,7 @@ RenderforestClient.getTemplate(701, { language: 'en' })
59
59
```
60
60
- The supported language codes are: ar, de, en, es, fr, pt, ru, tr.
61
61
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 )
63
63
64
64
65
65
### Get Color-Presets of the Template
@@ -75,7 +75,7 @@ RenderforestClient.getTemplateColorPresets(701)
75
75
```
76
76
- The number of color-presets is varying from template to template.
77
77
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 )
79
79
80
80
81
81
### Get Pluggable-Screens of the Template
@@ -92,7 +92,7 @@ RenderforestClient.getTemplatePluggableScreens(701)
92
92
- The number of pluggable-screens is varying from template to template.
93
93
Pluggable-Screens are grouped by categories.
94
94
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 )
96
96
97
97
98
98
### Get Recommended-Custom-Colors of the Template
@@ -108,7 +108,7 @@ RenderforestClient.getTemplateRecommendedCustomColors(701)
108
108
```
109
109
- The number of recommended-custom-colors is varying from template to template.
110
110
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 )
112
112
113
113
114
114
### Get Template-Presets of the Template
@@ -126,7 +126,7 @@ RenderforestClient.getTemplatePresets(701)
126
126
- The number of template-presets is varying from template to template.
127
127
Template-presets are ready-made stories created from this template to fasten your video production.
128
128
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 )
130
130
131
131
132
132
### Get SVG Content of the Template
@@ -140,7 +140,7 @@ RenderforestClient.getTemplateSVGContent(701)
140
140
.catch (console .error ) // handle the error
141
141
```
142
142
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 )
144
144
145
145
146
146
### Get Theme of the Template
@@ -155,7 +155,7 @@ RenderforestClient.getTemplateTheme(701)
155
155
```
156
156
- Both lego & non-lego templates might have a theme.
157
157
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 )
159
159
160
160
161
161
@@ -165,12 +165,11 @@ Retrieves transitions of the template.
165
165
``` js
166
166
const RenderforestClient = require (' @renderforest/sdk-node' )
167
167
168
-
169
168
RenderforestClient .getTemplateTransitions (701 )
170
169
.then (console .log ) // handle the success
171
170
.catch (console .error ) // handle the error
172
171
```
173
172
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 )
175
174
176
175
** [ ⬆ back to the top] ( #templates-api ) **
0 commit comments