🇨🇴 コロンビア — 司法手続き
エンドポイント
GET https://api.verifik.co/v2/co/rama/procesos
クエリに documentType(CC / NIT)と documentNumber を送ります。司法の検索は名寄せに依存するため、結果が空になる場合があります。
ヘッダー(Headers)
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
パラメータ(Parameters)
| name | type | required | description |
|---|---|---|---|
documentType | string | yes | CC または NIT。 |
documentNumber | string | yes | 照会する番号。 |
リクエスト(Request)
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/rama/procesos", {
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/rama/procesos"
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())
レスポンス(Response)
- 200
- 404
- 409
{
"data": {
"consultedSubject": "MATEO VERIFIK",
"documentNumber": "123456789",
"documentType": "CC",
"list": [
{
"despacho": "JUZGADO XXX CIVIL MUNICIPAL DE BOGOTÁ ",
"departamento": "BOGOTÁ",
"fechaProceso": "2007-09-21T00:00:00",
"llaveProceso": "110014003XXXXXXXXX"
}
],
"pagination": {
"page": "1",
"pages": "2",
"records": "21"
}
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "March 3, 2022 3:55 PM"
},
"id": "ABC12"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "検証エラー(CC・NIT 以外の documentType など)。"
}
備考(Notes)
documentTypeはCC/NITのみです。- 空の
listが返ることがあります。