SIMIT - Résolutions
Endpoint
https://api.verifik.co/v2/co/simit/resoluciones
Le service Résolutions SIMIT donne accès aux informations détaillées sur les résolutions d'infractions routières d'une personne ou d'une entreprise en Colombie. Il retourne le nom du contrevenant, le statut de la résolution, sa date et le montant dû.
En-têtes (Headers)
| Nom | Valeur |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Paramètres
| Nom | Type | Requis | Description |
|---|---|---|---|
documentType | string | Oui | Type de document. Valeurs autorisées : CC, PA, CE, TI, RC. |
documentNumber | string | Oui | Numéro de document à interroger, sans espaces ni points. |
Requête (Request)
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/simit/resoluciones", {
params: {
documentType: "CC",
documentNumber: "123456789"
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/simit/resoluciones"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "123456789"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Réponse (Response)
- 200
- 404
- 409
{
"data": {
"resoluciones": [
{
"estadosResoluciones": "Pendiente de pago",
"fechaComparendo": "20190503",
"fechaResolucion": "20191001",
"nombresInfractores": "PEPE SALGADO",
"NúmeroComparendo": "99999999000000000936",
"resoluciones": "S709332197",
"secretarias": "Barrancabermeja",
"total": "146770.0"
}
]
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "March 3, 2022 4:09 PM"}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentType. missing documentNumber"
}
Notes
- Les résolutions SIMIT sont les décisions officielles relatives aux infractions routières.
- Le statut « Pendiente de pago » indique que la résolution est en attente de paiement.
- Les numéros de résolution servent à suivre les décisions administratives.
- Les montants sont exprimés en pesos colombiens (COP).