Update Clients
Function name
update-users
Parameters
- data (Required). It is an array of fields. The details of the fields are as follows :
id (Required). Number. The ID of the user to be updates
Rest all fields are the same as that of create-clients
When your data format is XML, you should post something like this:Â
<data> <item> <id>768709</id> <name>Jack Miller</name> <login>jackmiller</login> <password>castles123</password> <email>jack@celoxis.com</email> <privileges>0,1</privileges> </item> <item> <id>7687087</id> <name>Mary Jane</name> </item> </data>
Â
In case of JSON, you should submit an array of objects with the same properties.
[ { "id":"223232", "name":"Joe Cole", "login":"joe.cole", "password":"kaboom1", "email":"joe.cole@celoxis.com" } { "id":"98798", "name":"Mary Jane", "login":"mary.jane", ... Â } ]