€0.001 + VAT
Offer your customers a support service for the submission of the application for the A2 Examination for Residence Card. Easy, fast and secure API integration
Openapi provides access to all the main civil registry certificates such as Residence Certificate A.I.R.E., Family Status, Marriage Extract.
The service is provided via API directly by a qualified professional and the timing, since it is carried out manually by operators, depends on the complexity of the file. Openapi guarantees that the entire process takes place in full compliance with current privacy regulations, with data minimisation and encryption logics.
With Openapi it is possible to access the support service for submitting the A2 Application Form for the Residence Card, which is obligatory for obtaining the EC long-term resident permit.
The request can be submitted directly by the declarant or through selected and recognised CAFs and Patronati (with delegation).
GET /visure
To submit the Application A2 Exam for Residence Card with Visengine, it is first necessary to identify the hash that uniquely identifies each document or file.
This is possible via the endpoint GET /visure which needs no parameters and will return the complete list of documents and files that can be requested via Visengine plus the respective hash.
https://visengine2.altravia.com/visure/
To verify the information, required documents, and the cost of the document, you need to make a request via the GET /visure/{hash_visura} endpoint and provide the hash of the previously obtained document.
GET /visure/{hash_visura}
https://visengine2.altravia.com/visure/38934ffe45179c4d5b88e2a6b849799a
GET /visure/{hash_visura}
The response will indicate all the information needed to complete the document request such as mandatory fields.
{
"data": {
"hash_visura": "2631ec9b62135de4186f509fea7d954b",
"json_struttura": {
"campi": {
"$0": {
"nome": "Nome",
"tipo": "testo",
"null": false,
"istruzioni": "Inserisci il nome del richiedente"
},
"$1": {
"nome": "Cognome",
"tipo": "testo",
"null": false,
"ordine": "1",
"istruzioni": "Inserisci il cognome del richiedente"
},
"$2": {
"nome": "Email",
"tipo": "email",
"null": false,
"ordine": "4",
"istruzioni": "Inserire l'indirizzo email del richiedente"
},
"$3": {
"nome": "CELLULARE",
"tipo": "testo",
"null": false,
"ordine": "3",
"istruzioni": "Inserisci il numero di telefono del richiedente"
},
"$4": {
"nome": ""CODICE FISCALE",
"tipo": ""codice_fiscale_persona_fisica",
"null": false,
"ordine": "2",
"istruzioni": "Inserire il codice fiscale del richiedente"
},
"$5": {
"nome": "COPIA DOCUMENTO D`IDENTITÀ FRONTE RETRO",
"tipo": "file",
"null": false,
"ordine": "5",
"istruzioni": "Caricare una copia fronte retro del documento d`identità del richiedente."
},
"$6": {
"nome": "COPIA CODICE FISCALE FRONTE RETRO",
"tipo": "file",
"null": false,
"ordine": "6",
"istruzioni": "Caricare una copia fronte retro del codice fiscale del richiedente."
},
"$7": {
"nome": "COPIA MANDATO DI ASSISTENZA E RAPPRESENTANZA",
"tipo": "file",
"null": false,
"ordine": "7",
"istruzioni": "Caricare una copia del mandato di assistenza e rappresentanza del Caf assegnato."
}
},
"validazione": "($0 && $1 && $2 && $3 && $4 && $5 && $6 && $7) || ($0 && $1 && $2 && $3 && $4 && $5 && $6)",
"istruzioni": "",
"istruzioni_ricerca": ""
},
"nome_categoria": "Patronato",
"nome_visura": "Domanda Esame A2 per Carta di Soggiorno",
"opzioni": [
{
"tipo": "urgenza",
"prezzo": 4,
"nome": "opzione_0",
},
{
"tipo": "assistenza_dedicata",
"prezzo": 10,
"nome": "opzione_1",
}
],
"prezzo_ricerca": 0,
"prezzo_visura": 20,
"ricerca": false,
"sincrona": false,
"fornitori": [
]
},
"success": true,
"message": "",
"error": null
}
In validation, the data(s) required to successfully complete the request are indicated.
The data required for the request are:
Additional useful documents useful will be requested by the CAF or Patronato, which will handle the file in accordance with privacy regulations.
POST /richiesta
{ "data":
{
"_id": "5f2829ce065afc21cc60ad0e",
"state": 1,
"hash_visura": "2631ec9b62135de4186f509fea7d954b",
"nome": "Domanda Esame A2 per Carta di Soggiorno",
"ricerca": false,
"id_ricerca": null,
"prezzo_visura": 20,
"prezzo_ricerca": 0,
"indice_ricerca": null,
"stato_richiesta": "In erogazione",
"email_target": null,
"allegati": [],
"timestamp_creation": 1596467662,
"timestamp_last_update": 1596467663,
"timestamp_stati": {
"in_ricerca": 1596467663,
"in_erogazione": 1596467663
},
"callback_data": false,
"opzioni": null,
"owner": "[email protected]",
"sincrona": false,
"ricerche": [],
"esito": {
"codice": "0",
"info": "OK"
}
POST /richiesta
The response returns several pieces of information including the status, if callback is set, and the request ID that we will need later to download the document.
{ "data":
{
"_id": "5f2829ce065afc21cc60ad0e",
"state": 1,
"hash_visura": "38934ffe45179c4d5b88e2a6b849799a",
"nome": "730 Singolo",
"ricerca": false,
"id_ricerca": null,
"prezzo_visura": 25.7,
"prezzo_ricerca": 0,
"indice_ricerca": null,
"stato_richiesta": "In erogazione",
"email_target": null,
"allegati": [],
"timestamp_creation": 1596467662,
"timestamp_last_update": 1596467663,
"timestamp_stati": {
"in_ricerca": 1596467663,
"in_erogazione": 1596467663
},
"callback_data": false,
"opzioni": null,
"owner": "[email protected]",
"sincrona": false,
"ricerche": [],
"esito": {
"codice": "0",
"info": "OK"
}
Once the status of the request is in 'evaso' (=‘processed’), it is possible to download the document via the GET /documento/{_id} method.
GET /documento/{_id}
This is an example of a request using the previously obtained ID
https://visengine2.altravia.com/visure/documento/5f2829ce065afc21cc60ad0e
GET /documento/{_id}
The response will contain the name, size and file.
{
data{
"nome":"5f22f5b5065afc21cc60a27a.zip",
"dimensione"10206",
"file":"++6+47433njVP9ZcX1XNtWUsKrTya9FGhwiXgdp5j5OPh0FpaKWVpjP8CUEjFjYzYwYTI3YS5wZGZVVAUAAwhDKF91eAsAAQQhAAAABCEAAABQSwUGAAAAAAEAAQBiAAAAZicAAAAA"
},
"success": true,
"message": "",
"error": null
}
By integrating the Openapi API, companies can offer their customers an efficient and compliant service for the application for the A2 Examination, taking advantage of the professional management of recognised CAFs and Patronati.
Do you need help?
Haven't found the answer you're looking for?
Fill in all the details, we will get back to you as soon as possible!
The service allows you to integrate the A2 Exam Application for Residence Permit service via API, which is the request to take an Italian language proficiency test required to obtain the Residence Permit.
The service is fast, easy, and secure, and is managed by selected and recognized CAFs or Patronati, in compliance with regulations.
The service is part of Docuengine, the API for requesting over 128 official documents, benefits, and reports, with data coming from certified sources.
The main categories of documents available via Docuengine are as follows:
The services currently available on Openapi include:
The service is designed for companies that wish to easily integrate the A2 Exam Application for Residence Permit via API, offering their clients a fast and high-quality experience.
The process is handled by CAF and Patronati, managed by authorized and specialized personnel, ensuring full compliance with privacy regulations.
Openapi manages the entire request process via API in full compliance with the current privacy regulations, with data minimization and encryption measures.
For more information, you can consult the Privacy documentation on our website.
The produced documents are deleted from Openapi's systems based on the timelines visible in the Redemption Period (the deadline after which the document is deleted from our servers) within the privacy documentation. If necessary, the client can contact the authorized Professional who provided the service, who is required to keep a copy in accordance with regulations.
After submitting the application, the system processes it and forwards it to the competent office. The applicant will be notified online within 60 days with the exam date and location.
The cost for each request is €20.