POST WorkflowSettings/SaveLocalStorage
Save Browser's LocalStorage
Request Information
URI Parameters
None.
Body Parameters
Model that holds User name and localStorage content
LocalStorage| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName |
User Name |
string |
None. |
| Value |
Browser LocalStorage content |
string |
None. |
| UserMachineIp |
User Machine IP |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"Value": "sample string 2",
"UserMachineIp": "sample string 3"
}
application/xml, text/xml
Sample:
<LocalStorage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Workflow"> <UserMachineIp>sample string 3</UserMachineIp> <UserName>sample string 1</UserName> <Value>sample string 2</Value> </LocalStorage>
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>