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/).
160
+
161
+
```python
162
+
themes = Typeform('<api_key>').themes
163
+
result: dict= themes.get('abc123')
164
+
```
165
+
166
+
#### `themes.list(page: int = None, pageSize: int = None)`
167
+
168
+
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.
169
+
170
+
```python
171
+
themes = Typeform('<api_key>').themes
172
+
result: dict= themes.list()
173
+
```
174
+
175
+
154
176
## Tests
155
177
156
178
Check typeform/test/fixtures.py to configure test run.
0 commit comments