POST api/TransaltionDocument?filePathwithName={filePathwithName}&fileName={fileName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| filePathwithName | string |
Required |
|
| fileName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Document| Name | Description | Type | Additional information |
|---|---|---|---|
| DocId | integer |
None. |
|
| DocName | string |
None. |
|
| DocContent | Collection of byte |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"DocId": 1,
"DocName": "sample string 2",
"DocContent": "QEA=",
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<TransaltionDocumentController.Document xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MarkDocumentService.Controllers"> <DocContent>QEA=</DocContent> <DocId>1</DocId> <DocName>sample string 2</DocName> <Message>sample string 3</Message> </TransaltionDocumentController.Document>