POST trasform
Request Information
URI Parameters
None.
Body Parameters
RequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| txtarea | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"txtarea": "sample string 1"
}
application/xml, text/xml
Sample:
<RequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiImage.Models"> <txtarea>sample string 1</txtarea> </RequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| bytes | Collection of byte |
None. |
|
| errore | boolean |
None. |
|
| messaggio | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"bytes": "QEA=",
"errore": true,
"messaggio": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiImage.Models"> <errore>true</errore> <messaggio>sample string 2</messaggio> <bytes>QEA=</bytes> </ResponseModel>