POST api/DEW/DERCommentUpdate
Request Information
URI Parameters
None.
Body Parameters
DERCommentUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| SeqNum | integer |
None. |
|
| DerNum | integer |
None. |
|
| UserName | string |
None. |
|
| Comment | string |
None. |
|
| SessionNum | integer |
None. |
|
| SessionPassword | Collection of byte |
None. |
|
| ApplicationCode | string |
None. |
|
| StagesURL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SeqNum": 1,
"DerNum": 1,
"UserName": "sample string 1",
"Comment": "sample string 2",
"SessionNum": 3,
"SessionPassword": "QEA=",
"ApplicationCode": "sample string 4",
"StagesURL": "sample string 5"
}
application/xml, text/xml
Sample:
<DERCommentUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models"> <StagesURL>sample string 5</StagesURL> <ApplicationCode>sample string 4</ApplicationCode> <SessionNum>3</SessionNum> <SessionPassword>QEA=</SessionPassword> <Comment>sample string 2</Comment> <DerNum>1</DerNum> <SeqNum>1</SeqNum> <UserName>sample string 1</UserName> </DERCommentUpdateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DERCommentUpdateRResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| DERCommentUpdate | Collection of DERCommentUpdateResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ErrorMessage": "sample string 2",
"DERCommentUpdate": [
{
"Comment": "sample string 1",
"Date": "2025-12-14T17:37:40.4798543-05:00",
"DERNum": 1,
"SeqNum": 2,
"UserName": "sample string 3"
},
{
"Comment": "sample string 1",
"Date": "2025-12-14T17:37:40.4798543-05:00",
"DERNum": 1,
"SeqNum": 2,
"UserName": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<DERCommentUpdateRResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models">
<DERCommentUpdate xmlns:d2p1="http://schemas.datacontract.org/2004/07/RapidAPI">
<d2p1:DERCommentUpdateResult>
<d2p1:Comment>sample string 1</d2p1:Comment>
<d2p1:DERNum>1</d2p1:DERNum>
<d2p1:Date>2025-12-14T17:37:40.4798543-05:00</d2p1:Date>
<d2p1:SeqNum>2</d2p1:SeqNum>
<d2p1:UserName>sample string 3</d2p1:UserName>
</d2p1:DERCommentUpdateResult>
<d2p1:DERCommentUpdateResult>
<d2p1:Comment>sample string 1</d2p1:Comment>
<d2p1:DERNum>1</d2p1:DERNum>
<d2p1:Date>2025-12-14T17:37:40.4798543-05:00</d2p1:Date>
<d2p1:SeqNum>2</d2p1:SeqNum>
<d2p1:UserName>sample string 3</d2p1:UserName>
</d2p1:DERCommentUpdateResult>
</DERCommentUpdate>
<ErrorMessage>sample string 2</ErrorMessage>
<Success>true</Success>
</DERCommentUpdateRResult>