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


Question

Posted
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("

Please login or register to see this link.

, {
        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
 
 

2 answers to this question

Recommended Posts

  • 0
Posted

ex

api.put('/scenes/49', {iconID=0})

 

      api.put("/globalVariables/"..i, {
        name       = i,
        value      = v.value,
        isEnum     = v.isEnum,
        enumValues = v.enumValue
      })
 

 

notice HC2

  • 0
  • Inquirer
  • Posted

    Thanks, the scene's working now.
    Wanting to do the same operation in CURL I get a return code = 200, but the data are not updated; where am I wrong?
    This is the string:
    curl -v -X PUT -d "{name="NunuCURL", sectionID=219}" -H "Content-Type: application/json" --url http://XXXXXXXX/api/rooms/279 --header "Authorization: Basic XXXXXXXXXXXXXXXXXX"                                            
     

     

    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.

    Guest
    Answer this question...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

    ×
    ×
    • Create New...