@@ -83,17 +83,17 @@ Each one of them encapsulates the operations related to it (like listing, updati
83
83
84
84
### Forms
85
85
86
- #### ` forms.list({ page: 1, pageSize = 10, search = '' }) `
86
+ #### ` forms.list({ page: 1, pageSize = 10, search = '', page }) `
87
87
- Get a list of your typeforms
88
- - Returns a list of typeform with the payload [ refenced here] ( https://developer.typeform.com/create/reference/retrieve-forms/ ) .
88
+ - Returns a list of typeform with the payload [ referenced here] ( https://developer.typeform.com/create/reference/retrieve-forms/ ) .
89
89
90
90
#### ` forms.get({ uid }) `
91
91
- Get a typeform by UID
92
- - Returns a typeform with the payload [ refenced here] ( https://developer.typeform.com/create/reference/retrieve-form/ ) .
92
+ - Returns a typeform with the payload [ referenced here] ( https://developer.typeform.com/create/reference/retrieve-form/ ) .
93
93
94
94
#### ` forms.update({ uid, data = {}, override = false }) `
95
95
- Get a typeform by UID
96
- - Returns a typeform with the payload [ refenced here] ( https://developer.typeform.com/create/reference/retrieve-form/ ) .
96
+ - Returns a typeform with the payload [ referenced here] ( https://developer.typeform.com/create/reference/retrieve-form/ ) .
97
97
98
98
#### ` forms.delete({ uid }) `
99
99
@@ -141,16 +141,16 @@ Each one of them encapsulates the operations related to it (like listing, updati
141
141
#### ` themes.list({ page, pageSize }) `
142
142
- Gets your themes collection
143
143
- ` page ` : default ` 1 `
144
- - ` page_size : default ` 10`
144
+ - ` pageSize : default ` 10`
145
145
146
146
#### ` themes.get({ id }) `
147
147
- Gets a theme for the given ID
148
148
149
- #### ` themes.create({ background, colors, font, has_transparent_button , name }) `
149
+ #### ` themes.create({ background, colors, font, hasTransparentButton , name }) `
150
150
- Creates a theme with the given configuration
151
151
- See more details of the payload in [ the documentation] ( https://developer.typeform.com/create/reference/create-theme/ )
152
152
153
- #### ` themes.update({ background, colors, font, has_transparent_button , name }) `
153
+ #### ` themes.update({ background, colors, font, hasTransparentButton , name }) `
154
154
- Creates a theme with the given configuration
155
155
- See more details of the payload in [ the documentation] ( https://developer.typeform.com/create/reference/update-theme/ )
156
156
@@ -162,7 +162,7 @@ Each one of them encapsulates the operations related to it (like listing, updati
162
162
#### ` workspaces.list({ page, pageSize, search }) `
163
163
- Gets your workspaces
164
164
- ` page ` : default ` 1 `
165
- - ` page_size : default ` 10`
165
+ - ` pageSize : default ` 10`
166
166
- ` search ` : search a workspace that partially matches the search string
167
167
168
168
#### ` workspaces.get({ id }) `
@@ -190,7 +190,7 @@ Each one of them encapsulates the operations related to it (like listing, updati
190
190
191
191
### Responses
192
192
193
- #### ` responses.list({ uid, page_size , since, until, after, before, completed, sort, query, fields }) `
193
+ #### ` responses.list({ uid, pageSize , since, until, after, before, completed, sort, query, fields }) `
194
194
- List responses from the given ID
195
195
- ` uid ` : typeform UID
196
196
- For parameter details check [ the documentation] ( https://developer.typeform.com/responses/reference/retrieve-responses/ )
0 commit comments