-1

I am using Postman software to test update field of an item in Podio. The field is 'consomme-en-jh'. The value is updated in Podio with an empty value. Do I forget a key value in the body or another thing?[enter image description here]

Ashkan S
  • 10,464
  • 6
  • 51
  • 80

1 Answers1

0

Looks like you are trying to use this api method: https://developers.podio.com/doc/items/update-item-field-values-22367

Please read docs on how to use it and follow cUrl example. It's hard to tell from your screenshot, but verify:

  1. Url should be like: https://api.podio.com/item/<item-id>/value/<field-id>
  2. Method is PUT
  3. Body is new value (and it depends on your field type, value might be very different)
Pavlo - Podio
  • 2,003
  • 2
  • 10
  • 19
  • Thank you Pavlo - I worked on it yesterday and I see that there is a 'code' button in postman where I can convert my request in cUrl. I can now compare easily my request with the example you mentioned. I hope I will succeed ;-) – Matthieu Vanhille Jan 18 '19 at 08:35