Tools/Encoding
Decode and verify object
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.
post/v2/tools/decode-and-verify
Request body
Example request
{
"encoded": "eyJwYXlsb2FkIjoiLi4uIiwic2lnbmF0dXJlIjoiLi4uIn0="
}Response
Example response
{
"data": {
"encodedByUserId": "wRwJZtadYvn4mBZmm"
}
}