Verify a signature
POST/:handle/:session_id/sig
The response will acknowledge wether a signature is authentic or not
Request
Path Parameters
handle stringrequired
Org handle
session_id stringrequired
Session ID
- application/json
Body
required
request body
digest string
Digest of the plaintext hashed with salt
Responses
- 200
- 400
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
data
object
ok boolean
success boolean
{
"data": {
"ok": true
},
"success": true
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
data integer[]
detail string
Human-friendly description that can be shown to the user.
error_code string
error_id string
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
data integer[]
detail string
Human-friendly description that can be shown to the user.
error_code string
error_id string
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
data integer[]
detail string
Human-friendly description that can be shown to the user.
error_code string
error_id string
Only present in case of internal errors (status 500 or 502)
{
"data": [
0
],
"detail": "string",
"error_code": "string",
"error_id": "string"
}
Loading...