POST api/Account/GridSettings
Saves the user's grid settings.
Request Information
URI Parameters
None.
Body Parameters
UserGridSettingsModel
ESignSystems.SmartSAFE.Models.User.UserGridSettingsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserGridSettingsId |
Gets or sets the id of the user grid settings. |
integer |
None. |
| Route |
Gets or sets the route of the report associated to the user grid settings. |
string |
Required Max length: 256 |
| GridState |
Gets or sets a string representing the saved grid settings. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"UserGridSettingsId": 1,
"Route": "sample string 1",
"GridState": "sample string 2"
}
application/xml, text/xml
Sample:
<UserGridSettingsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.User"> <GridState>sample string 2</GridState> <Route>sample string 1</Route> <UserGridSettingsId>1</UserGridSettingsId> </UserGridSettingsModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ESignSystems.Core.Results.OperationResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeeded | boolean |
None. |
|
| Content | Object |
None. |
|
| Errors | Collection of string |
None. |
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.