POST api/Configuration
Request Information
URI Parameters
None.
Body Parameters
EncryptionRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| plain | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"plain": "sample string 1"
}
application/xml, text/xml
Sample:
<EncryptionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WittSoftAPI.Models"> <plain>sample string 1</plain> </EncryptionRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
EncryptionResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| encrypted | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"encrypted": "sample string 1"
}
application/xml, text/xml
Sample:
<EncryptionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WittSoftAPI.Models"> <encrypted>sample string 1</encrypted> </EncryptionResponse>