POST api/v1/AccountantExpense_InProjectScreen/UpdateFields
Request Information
URI Parameters
None.
Body Parameters
EzyObjectFieldValues| Name | Description | Type | Additional information |
|---|---|---|---|
| ParentId | string |
None. |
|
| ProjectId | string |
None. |
|
| Id | string |
None. |
|
| Url | string |
None. |
|
| Values | Collection of EzyFieldValues |
None. |
|
| RequestData | Dictionary of string [key] and Object [value] |
None. |
|
| UserLoginId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ParentId": "sample string 2",
"ProjectId": "sample string 2",
"Id": "sample string 3",
"Url": "sample string 4",
"Values": [
{
"FieldName": "sample string 1",
"ExtData": "sample string 2",
"OldValue": {},
"NewValue": {}
},
{
"FieldName": "sample string 1",
"ExtData": "sample string 2",
"OldValue": {},
"NewValue": {}
}
],
"RequestData": null,
"UserLoginId": "sample string 5"
}
application/xml, text/xml
Sample:
<EzyObjectFieldValues xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.Library.Data">
<Id>sample string 3</Id>
<ParentId>sample string 2</ParentId>
<ProjectId>sample string 2</ProjectId>
<RequestData xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
<Url>sample string 4</Url>
<UserLoginId>sample string 5</UserLoginId>
<Values>
<EzyFieldValues>
<NewValue />
<OldValue />
<ExtData>sample string 2</ExtData>
<FieldName>sample string 1</FieldName>
</EzyFieldValues>
<EzyFieldValues>
<NewValue />
<OldValue />
<ExtData>sample string 2</ExtData>
<FieldName>sample string 1</FieldName>
</EzyFieldValues>
</Values>
</EzyObjectFieldValues>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
EzyResultObjectOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| ExtraData | Dictionary of string [key] and Object [value] |
None. |
|
| StartTime | decimal number |
None. |
|
| EndTime | decimal number |
None. |
|
| TotalMili | decimal number |
None. |
|
| StatusCode | integer |
None. |
|
| Msg | string |
None. |
|
| MsgShowInUI | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"ExtraData": null,
"StartTime": 2.1,
"EndTime": 3.1,
"TotalMili": 4.1,
"StatusCode": 5,
"Msg": "sample string 6",
"MsgShowInUI": "sample string 7"
}
application/xml, text/xml
Sample:
<EzyResultObjectOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ezy.Module.Library.Message"> <Msg>sample string 6</Msg> <MsgShowInUI>sample string 7</MsgShowInUI> <StatusCode>5</StatusCode> <Data /> <EndTime>3.1</EndTime> <ExtraData xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" /> <StartTime>2.1</StartTime> <TotalMili>4.1</TotalMili> </EzyResultObjectOfanyType>