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