v1

latestOpenAPI 3.1.0Apache 2.02026-07-26141310.8 KB
Signing

Verify a signed envelope

Checks the signature(s) on a GOBL envelope using the provided public key.

post/verify

Request body

{"stackTrail":"components:schemas:VerifyRequest:properties:data","oasType":"schema","type":"unknown","description":"Signed GOBL envelope to verify."}

Example request

{
  "publickey": {
    "kty": "EC",
    "crv": "P-256",
    "alg": "ES256",
    "use": "sig"
  }
}

Response

Verification passed

okboolean

Example response

{
  "ok": true
}