Split Payment

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.

Utili consigli per iniziare con Split Payment

Prendi il token nell'apposita sezione prima di cominciare.

Usa lo strumento online o generalo via API. Imposta una data di scadenza e aggiungi una serie di Scopes per limitare le possibli azioni permesse al token.

Splitpayment (1.0.0)

Servizio web che restituisce l'elenco delle aziende soggette a split-payment che hanno l'IVA versata dalla pubblica amministrazione.

Split-payment

Punti finali per l'elenco delle società che effettuano lo split-payment

Tutte le aziende

Elenco di tutte le società soggette a split-payment

Authorizations:
bearerAuth

Responses

Response Schema: application/json
Array of objects (Company)
success
boolean
message
string
error
integer

Request samples

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

Content type
application/json
{
  • "data": [
    ],
  • "success": true,
  • "message": "3 aziende trovate",
  • "error": null
}

Azienda specifica

Questo endpoint restituisce i dati dell'azienda identificata dal codice fiscale

Authorizations:
bearerAuth
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

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

Content type
application/json
{
  • "data": [
    ],
  • "success": true,
  • "message": "1 aziende trovate",
  • "error": null
}