GET users/{id}/configfile
Gets the config file for a user
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | The user Id |
Define this parameter in the request URI. |
Response Information
Returns: The config model
Response body formats
application/json, text/json
Sample:
{
"Name": "chauffeur@dsoft.be",
"Password": "base64hash",
"ApiUrl": "http://api.dev.innectis.be/",
"PropertiesString": "URL=http\\://api.dev.innectis.be/\nUser=chauffeur@dsoft.be\nPassword=base64hash"
}
application/xml, text/xml
Sample:
<UserConfigRestGet xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Name>chauffeur@dsoft.be</Name> <Password>base64hash</Password> <ApiUrl>http://api.dev.innectis.be/</ApiUrl> </UserConfigRestGet>
