You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 3, 2023. It is now read-only.
Retrieves a theme by the given theme_id. [See docs](https://developer.typeform.com/create/reference/retrieve-theme/).
161
+
162
+
```python
163
+
themes = Typeform('<api_key>').themes
164
+
result: dict= themes.get('abc123')
165
+
```
166
+
167
+
#### `themes.list(page: int = None, pageSize: int = None)`
168
+
169
+
Retrieves a list of JSON descriptions for all themes in your Typeform account (public and private). Themes are listed in reverse-chronological order based on the date you added them to your account.
170
+
171
+
```python
172
+
themes = Typeform('<api_key>').themes
173
+
result: dict= themes.get('abc123')
174
+
```
175
+
176
+
### Images
177
+
178
+
#### `images.get(uid: str)`
179
+
180
+
Retrieves an image by the given id. [See docs](https://developer.typeform.com/create/reference/retrieve-image).
181
+
182
+
```python
183
+
images = Typeform('<api_key>').images
184
+
result: dict= images.get('abc123')
185
+
```
186
+
187
+
#### `images.list()`
188
+
189
+
Retrieves a list of JSON descriptions for all images in your Typeform account. Images are listed in reverse-chronological order based on the date you added them to your account.
Specify the URL of your image or send your image in base64 format, which encodes the image data as ASCII text. You can use a tool like Base64 Image Encoder to get the base64 code for the image you want to add.
201
+
202
+
154
203
## Tests
155
204
156
205
Check typeform/test/fixtures.py to configure test run.
Retrieves a list of JSON descriptions for all images in your Typeform account. Images are listed in reverse-chronological order based on the date you added them to your account.
Specify the URL of your image or send your image in base64 format, which encodes the image data as ASCII text. You can use a tool like Base64 Image Encoder to get the base64 code for the image you want to add.
Retrieves a list of JSON descriptions for all themes in your Typeform account (public and private). Themes are listed in reverse-chronological order based on the date you added them to your account.
0 commit comments