_id
. We'll use this column to let us know when Webflow includes the item to our CMS successfully. This gives us a list of items that aren't added and prevents duplicates by filtering records without the _id
column filled out.Key
and choose the variable from the previous step that matches the name of the column. For example, a key called name
should match up with a variable called instance.fields.Name
. You'll want to do this for every column you'd like to include in each item. You can find a detailed list of fields inside Webflow’s Item documentation.POST
request to https://api.webflow.com/collections/[YOUR_COLLECTION_ID]/items
, replacing [YOUR_COLLECTION_ID]
with the ID of your Webflow Collection you'd like to add your items to.Authorization
and accept-version
keys in the request headers. You can find your Webflow API key by checking out Webflow's API Documentation_id
_id
variable we received in the response from our Request from Step 5._id
field in each record, we just need to fill out with the variable we want to change it to. Leaving the other columns blank won't change the information currently stored within them.