POST UserPreferenceSettings/GetSettingByUser
Request Information
URI Parameters
None.
Body Parameters
GetSettingByUserInput| Name | Description | Type | Additional information |
|---|---|---|---|
| userName | string |
None. |
|
| type | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"userName": "sample string 1",
"type": "sample string 2"
}
application/xml, text/xml
Sample:
<UserPreferenceSettingsController.GetSettingByUserInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pioneer.Trials.Domain.TrialsAPIServices.Controllers"> <type>sample string 2</type> <userName>sample string 1</userName> </UserPreferenceSettingsController.GetSettingByUserInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UserPreferenceSettings| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
None. |
|
| Type | string |
None. |
|
| Value | string |
None. |
|
| LastMaintenanceName | string |
None. |
|
| LastMaintenanceDate | date |
None. |
|
| ChangeTracker | ObjectChangeTracker |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"Type": "sample string 2",
"Value": "sample string 3",
"LastMaintenanceName": "sample string 4",
"LastMaintenanceDate": "2025-10-30T07:32:00.0165297+00:00",
"ChangeTracker": {
"$id": "2",
"State": 2,
"ObjectsRemovedFromCollectionProperties": {},
"OriginalValues": {},
"ExtendedProperties": {},
"ObjectsAddedToCollectionProperties": {}
}
}
application/xml, text/xml
Sample:
<UserPreferenceSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" xmlns="http://schemas.datacontract.org/2004/07/Pioneer.Trials.Domain.Model">
<ChangeTracker z:Id="i2">
<ExtendedProperties />
<ObjectsAddedToCollectionProperties />
<ObjectsRemovedFromCollectionProperties />
<OriginalValues />
<State>Added</State>
</ChangeTracker>
<LastMaintenanceDate>2025-10-30T07:32:00.0165297+00:00</LastMaintenanceDate>
<LastMaintenanceName>sample string 4</LastMaintenanceName>
<Type>sample string 2</Type>
<UserName>sample string 1</UserName>
<Value>sample string 3</Value>
</UserPreferenceSettings>