Verify the authenticity of a guarantee.

GET /api/v1/verify

Query parameters
checksum string · required

The checksum to be verified.

cig string · optional

The unique code for the contract.

contractorVatNumber string · optional

The VAT number (Partita Iva) of the contractor.

garantedAmount string · optional

The amount of the guarantee.

guaranteedVatNumber string · optional

The VAT number (Partita Iva) of the guaranteed party.

id string · optional

The unique identifier of the guarantee to be verified.

Responses

200 application/json
message string · optional

Example: success

data object · optional
verified boolean · optional

Example: false

GET /api/v1/verify
GET /api/v1/verify?checksum=text HTTP/1.1
Accept: */*
200 Success
application/json
{
  "message": "success",
  "data": {
    "verified": false
  }
}