Web service that returns the list of companies subject to split-payment that are with VAT taxes paid by the public administration
List of all companies subject to split-payment
Array of objects (Company) [ items ] | |
success | boolean |
message | string |
error | integer |
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://splitpayment.openapi.it/"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
{- "data": [
- {
- "cf": "00081070591",
- "den": "SIOG SOCIETA'ITALIANA OLEODOTTI DI GAETA SPA IN AMM.NE STRAORDINARIA",
- "dm": "1571270400",
- "categoria": "Societa' controllate di fatto dalla Presidenza del Consiglio dei Ministri e dai Ministeri",
- "update_timestamp": 1605031159
}, - {
- "cf": "00103540829",
- "den": "INDUSTRIA SICILIANA ACIDO FOSFORICO S.P.A.IN LIQUIDAZIONE",
- "dm": "1571270400",
- "categoria": "Societa' controllate di fatto dalla Presidenza del Consiglio dei Ministri e dai Ministeri",
- "update_timestamp": 1605031159
}, - {
- "cf": "00109940478",
- "den": "ANSALDOBREDA S.P.A.",
- "dm": "1571270400",
- "categoria": "Societa' controllate di fatto dalla Presidenza del Consiglio dei Ministri e dai Ministeri",
- "update_timestamp": 1605031159
}
], - "success": true,
- "message": "3 aziende trovate",
- "error": null
}
This endpoint returns the data of the company identified by tax code
cf required | string Default: "<string>" Example: 98040900171 Tax code or VAT number |
Array of objects (Company) [ items ] | |
success | boolean |
message | string |
error | integer |
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://splitpayment.openapi.it/%7Bcf%7D"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
{- "data": [
- {
- "cf": "98040900171",
- "den": "FONDAZIONE BRESCIANA PER GLI STUDI ECONOMICO - GIURIDICI",
- "dm": "1571270400",
- "categoria": "Enti, fondazioni o societa' partecipate per una percentuale complessiva del capitale non inferiore al 70 per cento, dalle Amministrazioni Pubbliche",
- "update_timestamp": 1605031159
}
], - "success": true,
- "message": "1 aziende trovate",
- "error": null
}