Decrypt With Public Key
POST /api/v1/keys/:apiKey/decrypt
Description
Decrypt data using the private key associated with the provided API key.
URL:
- Raw URL:
/api/v1/keys/:apiKey/decrypt - Host:
- Path:
/api/v1/keys/:apiKey/decrypt - Variables:
- apiKey: (Required)
Headers:
- authorizer-api-key: (Required)
- authorizer-api-code: (Required)
- Content-Type: application/json
Response:
- Status: Created (201)
/api/v1/keys/:apiKey/decrypt
Headers
| Content-Type | Value |
|---|---|
| authorizer-api-key | string |
Headers
| Content-Type | Value |
|---|---|
| authorizer-api-code | string |
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Body (raw)
{
"payload": "<string>"
}
Response: 201
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v1/keys/:apiKey/decrypt \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!