The checksum to be verified.
The unique code for the contract.
The VAT number (Partita Iva) of the contractor.
The amount of the guarantee.
The VAT number (Partita Iva) of the guaranteed party.
The unique identifier of the guarantee to be verified.
Responses
Example: success
Example: false
GET /api/v1/verify?checksum=text HTTP/1.1
Accept: */*
curl -L \
--url '/api/v1/verify?checksum=text' \
--header 'Accept: */*'
const response = await fetch('/api/v1/verify?checksum=text', {
method: 'GET',
headers: {
"Accept": "*/*"
},
});
const data = await response.json();
import requests
response = requests.get(
"/api/v1/verify?checksum=text",
headers={"Accept":"*/*"},
)
data = response.json()
{
"message": "success",
"data": {
"verified": false
}
}