Skip to main content

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-TypeValue
authorizer-api-keystring

Headers

Content-TypeValue
authorizer-api-codestring

Headers

Content-TypeValue
Content-Typeapplication/json

Body (raw)

{
"payload": "<string>"
}

Response: 201

LANGUAGE

AUTHORIZATION

Bearer

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!