POST api/Documents/GetBase64ByUrl
Request Information
URI Parameters
None.
Body Parameters
UploadImageVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
None. |
|
| URL | string |
None. |
|
| FileURL | string |
None. |
|
| FileType | string |
None. |
|
| Description | string |
None. |
|
| FileName | string |
None. |
|
| UId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Type": "sample string 1",
"URL": "sample string 2",
"FileURL": "sample string 3",
"FileType": "sample string 4",
"Description": "sample string 5",
"FileName": "sample string 6",
"UId": 7
}
application/xml, text/xml
Sample:
<UploadImageVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.Image"> <Description>sample string 5</Description> <FileName>sample string 6</FileName> <FileType>sample string 4</FileType> <FileURL>sample string 3</FileURL> <Type>sample string 1</Type> <UId>7</UId> <URL>sample string 2</URL> </UploadImageVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Description | string |
None. |
|
| Data | Object |
None. |
|
| Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2",
"Description": "sample string 3",
"Data": {},
"Count": 5
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models"> <Count>5</Count> <Data /> <Description>sample string 3</Description> <Message>sample string 2</Message> <Success>true</Success> </Response>