POST api/DEW/DERAttachmentInsert
Request Information
URI Parameters
None.
Body Parameters
DERAttachmentInsertRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| DERNum | integer |
None. |
|
| FileName | string |
None. |
|
| FilePath | string |
None. |
|
| FileType | string |
None. |
|
| SessionNum | integer |
None. |
|
| SessionPassword | Collection of byte |
None. |
|
| ApplicationCode | string |
None. |
|
| StagesURL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"DERNum": 1,
"FileName": "sample string 1",
"FilePath": "sample string 2",
"FileType": "sample string 3",
"SessionNum": 4,
"SessionPassword": "QEA=",
"ApplicationCode": "sample string 5",
"StagesURL": "sample string 6"
}
application/xml, text/xml
Sample:
<DERAttachmentInsertRequest 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> <DERNum>1</DERNum> <FileName>sample string 1</FileName> <FilePath>sample string 2</FilePath> <FileType>sample string 3</FileType> <Id>1</Id> </DERAttachmentInsertRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DERAttachmentInsertResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| DERAttachmentInsert | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ErrorMessage": "sample string 2",
"DERAttachmentInsert": 3
}
application/xml, text/xml
Sample:
<DERAttachmentInsertResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RapidAPI.Models"> <DERAttachmentInsert>3</DERAttachmentInsert> <ErrorMessage>sample string 2</ErrorMessage> <Success>true</Success> </DERAttachmentInsertResult>