POST api/eRegService/transferFile
Request Information
URI Parameters
None.
Body Parameters
transferFileJsonformat| Name | Description | Type | Additional information |
|---|---|---|---|
| file_name | string |
None. |
|
| file_base64 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"file_name": "sample string 1",
"file_base64": "sample string 2"
}
application/xml, text/xml
Sample:
<transferFileJsonformat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VicasCloud.API.Models"> <file_base64>sample string 2</file_base64> <file_name>sample string 1</file_name> </transferFileJsonformat>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnData| Name | Description | Type | Additional information |
|---|---|---|---|
| base64 | string |
None. |
|
| status | string |
None. |
|
| status_message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"base64": "sample string 1",
"status": "sample string 2",
"status_message": "sample string 3"
}
application/xml, text/xml
Sample:
<ReturnData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VicasCloud.API.Models"> <base64>sample string 1</base64> <status>sample string 2</status> <status_message>sample string 3</status_message> </ReturnData>