Skip to main content
POST
Decrypt data

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
data
required

The encrypted payload to decrypt.

  • Can be a string or an object/array with encrypted fields.
  • Decryption is selective if sensitiveFields is provided.
sensitiveFields
string[]

Laravel-style dot-notated paths to fields to decrypt.

  • Same syntax and behavior as in V2EncryptRequest.
  • If omitted, all string values matching encryption prefix are attempted.

Examples:

  • user.ssn
  • employees.*.payroll.token

Response

Decrypted result