POST api/getFileConfig
Request Information
URI Parameters
None.
Body Parameters
Login| Name | Description | Type | Additional information |
|---|---|---|---|
| user | string |
None. |
|
| password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"user": "sample string 1",
"password": "sample string 2"
}
text/html
Sample:
{"user":"sample string 1","password":"sample string 2"}
application/xml, text/xml
Sample:
<Login xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <Password>sample string 2</Password> <User>sample string 1</User> </Login>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Status | boolean |
None. |
|
| Dati | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Status": true,
"Dati": {}
}
text/html
Sample:
{"Message":"sample string 1","Status":true,"Dati":{}}
application/xml, text/xml
Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models"> <Dati /> <Message>sample string 1</Message> <Status>true</Status> </ResponseModel>