Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PATCH doesn't allow custom data fields #23

Open
vanwars opened this issue Oct 17, 2024 · 0 comments
Open

PATCH doesn't allow custom data fields #23

vanwars opened this issue Oct 17, 2024 · 0 comments

Comments

@vanwars
Copy link

vanwars commented Oct 17, 2024

Hello, I'm new to the WebFlow python client, but I'm trying to programmatically update a CMS item in a collection, including some custom fields I defined. However, when I issue the following request (as suggested here: https://developers.webflow.com/data/reference/cms/collection-items/items/update-item)...

client.collections.items.update_item(
    collection_id=MY_COLLECTION_ID,
    item_id=MY_ITEM_ID,
    field_data=CollectionItemFieldData(
        custom_field_1="test"
    )
)

...I get the following error:

TypeError: ItemsClient.update_item() got an unexpected keyword argument 'field_data'

I'm using version 1.2.0. Is this a bug, or am I just misunderstanding the documentation?

UPDATE

I did get the CURL version to work, so at least that's a workaround:

curl -X PATCH https://api.webflow.com/v2/collections/MY_COLLECTION_ID/items/MY_ITEM_ID \
     -H "Authorization: Bearer MY_TOKEN" \
     -H "Content-Type: application/json" \
     -d '{
  "fieldData": {
    "custom_field_1": "test"
  }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant