MSPX API PUTTING DATA The interface for putting data is /tablename/:id Valid tablenames are those returned by the discovery (see discovery description). The fields are sent in the POST data part of the request. The value NULL Values can be unset (set to 'null') by setting them to the empty string or to the string 'null'. Example: curl -k -u 'apiuser:passwd' -X PUT \ -d 'description=grodddjur' \ 'https://demo.mspecs.se/contacts/1UJN2gM_SjL7TBEqd7lyMyrDPfci382DZPiuT2Qi9IE.' will return the modified object { "id": "1UJN2gM_SjL7TBEqd7lyMyrDPfci382DZPiuT2Qi9IE.", "identifier": null, "title": null, "firstName": "Grodan", "lastName": "Boll", "co": null, "gender": null, "birthDate": null, "description": "grodddjur" }