L'API è stata sostituita dall'endpoint /IT-splitpayment disponibile in Company
Per ottenere informazioni sulle società sottoposte a Split Payment scopri il nuovo servizio dell'API Company
Deprecated starting from 2024-12-31
Tutte le informazioni di cui hai bisogno
Qui trovi qualche consiglio da prendere in considerazione per approcciare a questa API. Se preferisci forniamo esempi di codice, documentazione in OAS3, la possibilità di provare l'API dal vivo con la Swagger UI oppure importare l'intera collezione in Postman. Offriamo inoltre un ambiente di Sandbox dove puoi sperimentare tutte le API gratuitamente.
Prendi il token nell'apposita sezione prima di cominciare.
- Oas file url https://console.openapi.com/oas/it/splitpayment.openapi.json
- Fork or import with Postman
- Production domain splitpayment.openapi.it
- Sandbox domain test.splitpayment.openapi.it
- Production Scopes 1
-
Sandbox Scopes 1
- GET test.splitpayment.openapi.it/root
Splitpayment (1.0.0)
Servizio web che restituisce l'elenco delle aziende soggette a split-payment che hanno l'IVA versata dalla pubblica amministrazione.
Tutte le aziende
Elenco di tutte le società soggette a split-payment
Authorizations:
Responses
Response Schema: application/json
Array of objects (Company) | |
success | boolean |
message | string |
error | integer |
Request samples
- C + Libcurl
- Csharp + Restsharp
- Go + Native
- Java + Okhttp
- Java + Unirest
- Javascript + Jquery
- Javascript + Xhr
- Node + Native
- Node + Request
- Node + Unirest
- Objc + Nsurlsession
- Ocaml + Cohttp
- Php + Curl
- Php + Http1
- Php + Http2
- Python + Python3
- Python + Requests
- Ruby + Native
- Shell + Curl
- Shell + Httpie
- Shell + Wget
- Swift + Nsurlsession
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);
Response samples
- 200
- 500
- "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
Azienda specifica
Questo endpoint restituisce i dati dell'azienda identificata dal codice fiscale
Authorizations:
path Parameters
cf required | string Example: 98040900171 Codice fiscale o partita IVA |
Responses
Response Schema: application/json
Array of objects (Company) | |
success | boolean |
message | string |
error | integer |
Request samples
- C + Libcurl
- Csharp + Restsharp
- Go + Native
- Java + Okhttp
- Java + Unirest
- Javascript + Jquery
- Javascript + Xhr
- Node + Native
- Node + Request
- Node + Unirest
- Objc + Nsurlsession
- Ocaml + Cohttp
- Php + Curl
- Php + Http1
- Php + Http2
- Python + Python3
- Python + Requests
- Ruby + Native
- Shell + Curl
- Shell + Httpie
- Shell + Wget
- Swift + Nsurlsession
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);
Response samples
- 200
- 404
- 500
- "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