Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

For creating or deleting an user in webSignatureOffice via Tyrservice you need to call following methods:

 

  • Create user

Method call: "createUser"

Parameters: string sessionId, struct{ 'first_name' : string, 'last_name' : string, 'login' : string, 'password' : string, 'email' : string, 'gender' : string, 'city' : string, 'country_id' : string }
-> country_id for Germany is 64 (all country_id´s are listed in CountryMessages.properties (part of the sourcecode), gender can be 'M' or 'F', login has to be unique and at least 4 characters long, password can be null

Return values: boolean ("true" for success, "false" for failure)

 

  • Delete user

Method call: "deleteUser"

Parameters: string session_id, string username

Return values: null

 

  • No labels