Jump to content

Welcome to Smart Home Forum by FIBARO

Dear Guest,

 

as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.

 

As a member you can:

  •     Start new topics and reply to others
  •     Follow topics and users to get email updates
  •     Get your own profile page and make new friends
  •     Send personal messages
  •     ... and learn a lot about our system!

 

Regards,

Smart Home Forum by FIBARO Team


Search the Community

Showing results for tags 'api put'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • FIBARO Community
    • FIBARO Portal and Forum policy
    • FIBARO
    • Say hello!
    • Off-topics
  • FIBARO Update
    • FIBARO System Update
    • FIBARO Mobile Update
  • FIBARO Community Support
    • Scenes and Interface
    • FIBARO Products
    • FIBARO Mobile
    • FIBARO HomeKit
    • FIBARO Assistant Integrations
    • Other Devices / Third-party devices
    • Tutorials and Guides
    • Home Automation
    • Suggestions
  • FIBARO Społeczność
    • FIBARO
    • Przywitaj się!
    • Off-topic
  • FIBARO Aktualizacja
    • FIBARO System Aktualizacja
    • FIBARO Mobile Aktualizacja
  • FIBARO Wsparcie Społeczności
    • Sceny i Interfejs
    • FIBARO Urządzenia
    • FIBARO Mobilnie
    • FIBARO HomeKit
    • Integracja z Amazon Alexa i Google Home
    • Urządzenia Firm Trzecich
    • Poradniki
    • Automatyka Domowa
    • Sugestie

Categories

  • Scenes
  • Virtual Devices
  • Quick Apps
  • Icons

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Facebook


Google+


Skype


Website URL


WhatsApp


Country


Gateway/s


Interests

Found 1 result

  1. Good morning, even though I read the documentation and everything works with GET/POST/DELETE, I can't understand what I have to do to modify a room that exists (id=279); I always receive return code 400: [DEBUG] 09:01:40: response.status 400 [DEBUG] 09:01:40: failed [DEBUG] 09:01:40: response.data {"type": "ERROR", "reason": "id", "message": "no id"} [DEBUG] 09:01:40: type ERROR [DEBUG] 09:01:40: message no id [DEBUG] 09:01:40: reason id Here are the instructions: --[[ --%% autostart %% properties %% globals --]] print('crearoom') created = false stanzaID = 0 stanzaid=279; nameRoom="newstanza"; sectionIDRoom=219; print('chiamataPUT') date = os.date(); requestBody = {body = {name = nameRoom, sectionID=sectionIDRoom}} httpClient = net.HTTPClient() httpClient:request("http://127.0.0.1/api/rooms?id="..stanzaid, { options = { data = json.encode(requestBody), method = "PUT", headers = { ["Content-Type"] = "application/json", ["Accept"] = "application/json", ["Authorization"] = "Basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", } }, success = function(response) print('response.status '..response.status) if response.status ~= 200 and response.status ~= 201 then print("failed"); end created = true print('response.data '..response.data) results = json.decode(response.data) for k,v in pairs(results) do print(k, v) if k == "id" then stanzaID = v print ('stanzaID 1 '..stanzaID) end end end, error = function(message) print("error:", message) end }); Thanks in advance. Lorenzo
×
×
  • Create New...