Skip to main content

Decode and verify object

POST 

/v2/tools/decode-and-verify

Decodes and verifies an encoded value previously created by the encode-and-sign endpoint. Returns the original decoded object along with information about the user who encoded it and whether that user is verified.

Important: The request must specify the Content-Type: application/json HTTP header.

Request

Bodyrequired

  • encoded string required
    Example: eyJwYXlsb2FkIjoiLi4uIiwic2lnbmF0dXJlIjoiLi4uIn0=

Status 200

{
"data": {
"encodedByUserId": "wRwJZtadYvn4mBZmm",
"isVerifiedUser": false
}
}