POST api/DataEncryption/Decrypt?device_token={device_token}
Documentation for 'Decrypt'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| model | Documentation for 'model'. |
Define this parameter in the request body. |
| device_token | Documentation for 'device_token'. |
Define this parameter in the request URI. |
Request body formats
application/json, text/json
Sample:
{
"PublicKey": "sample string 1",
"Signature": "sample string 2",
"Value": "sample string 3"
}
application/xml, text/xml
Sample:
<DataEncryptionRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <PublicKey>sample string 1</PublicKey> <Signature>sample string 2</Signature> <Value>sample string 3</Value> </DataEncryptionRequest>