Encrypting the post.
Input
Encoding
application/jsonbody
string
Required
No description available.
password
string
Required
No description available.
Output
Encoding
application/jsonbody
string
Required
No description available.
message
string
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"body",
"password"
],
"properties": {
"body": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"body"
],
"properties": {
"body": {
"type": "string"
},
"message": {
"type": "string"
}
}
},
"encoding": "application/json",
"description": "Returns the encrypted result."
},
"description": "Encrypting the post."
}