We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63fa332 commit bc4b0b2Copy full SHA for bc4b0b2
src/Webflow.js
@@ -208,6 +208,13 @@ export default class Webflow {
208
return this.delete(`/collections/${collectionId}/items/${itemId}`, query);
209
}
210
211
+ patchItem({ collectionId, itemId, ...data }, query = {}){
212
+ if (!collectionId) return Promise.reject(buildRequiredArgError('collectionId'));
213
+ if (!itemId) return Promise.reject(buildRequiredArgError('itemId'));
214
+
215
+ return this.patch(`/collections/${collectionId}/items/${itemId}`, data, query);
216
+ }
217
218
// Images
219
220
// TODO
0 commit comments