The Invoicetronic API is a RESTful service that allows you to send and receive invoices through the Italian Servizio di Interscambio (SDI), or Interchange Service. The API is designed to be simple and easy to use, abstracting away SDI complexity while providing complete control over the invoice send/receive process. It provides advanced features as encryption at rest, multi-language pre-flight invoice validation, multiple upload formats, webhooks, event logging, client SDKs, and CLI tools.
For more information, see Invoicetronic website
This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.
- API version: 1
- Package version: 1
- Generator version: 7.12.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://invoicetronic.com
Install the following dependencies:
go get github.com/stretchr/testify/assert
go get golang.org/x/net/context
Put the package under your project folder and add the following in import:
import invoicetronicsdk "github.com/invoicetronic/go-sdk"
To use a proxy, set the environment variable HTTP_PROXY
:
os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")
All URIs are relative to http://localhost
Class | Method | HTTP request | Description |
---|---|---|---|
CompanyAPI | CompanyGet | Get /company | List companies |
CompanyAPI | CompanyIdDelete | Delete /company/{id} | Delete a company |
CompanyAPI | CompanyIdGet | Get /company/{id} | Get a company by id |
CompanyAPI | CompanyPost | Post /company | Add a company |
CompanyAPI | CompanyPut | Put /company | Update a company |
LogAPI | LogGet | Get /log | List events |
LogAPI | LogIdGet | Get /log/{id} | Get an event by id |
ReceiveAPI | ReceiveGet | Get /receive | List incoming invoices |
ReceiveAPI | ReceiveIdDelete | Delete /receive/{id} | Delete an incoming invoice by id |
ReceiveAPI | ReceiveIdGet | Get /receive/{id} | Get an incoming invoice by id |
SendAPI | SendFilePost | Post /send/file | Add an invoice by file |
SendAPI | SendGet | Get /send | List invoices |
SendAPI | SendIdGet | Get /send/{id} | Get a invoice by id |
SendAPI | SendJsonPost | Post /send/json | Add an invoice by json |
SendAPI | SendPost | Post /send | Add an invoice |
SendAPI | SendValidateFilesPost | Post /send/validate/files | Validate an invoice by file |
SendAPI | SendValidateJsonPost | Post /send/validate/json | Validate an invoice by json |
SendAPI | SendValidatePost | Post /send/validate | Validate an invoice |
SendAPI | SendValidateXmlPost | Post /send/validate/xml | Validate an invoice by xml |
SendAPI | SendXmlPost | Post /send/xml | Add an invoice by xml |
StatusAPI | StatusGet | Get /status | Account status |
UpdateAPI | UpdateGet | Get /update | List updates |
UpdateAPI | UpdateIdGet | Get /update/{id} | Get an update by id |
WebhookAPI | WebhookGet | Get /webhook | List webhooks |
WebhookAPI | WebhookIdDelete | Delete /webhook/{id} | Delete a webhook by id |
WebhookAPI | WebhookIdGet | Get /webhook/{id} | Get a webhook by id |
WebhookAPI | WebhookPost | Post /webhook | Add a webhook |
WebhookAPI | WebhookPut | Put /webhook | Update a webhook |
WebhookAPI | WebhookhistoryGet | Get /webhookhistory | List webhook history items |
WebhookAPI | WebhookhistoryIdGet | Get /webhookhistory/{id} | Get a webhook history item by id |
- Allegati
- AltriDatiGestionali
- Anagrafica
- CedentePrestatore
- CessionarioCommittente
- CodiceArticolo
- Company
- Contatti
- ContattiTrasmittente
- DatiAnagrafici
- DatiAnagraficiCedentePrestatore
- DatiAnagraficiCessionarioCommittente
- DatiAnagraficiVettore
- DatiBeniServizi
- DatiBollo
- DatiCassaPrevidenziale
- DatiContratto
- DatiConvenzione
- DatiDDT
- DatiFattureCollegate
- DatiGenerali
- DatiGeneraliDocumento
- DatiOrdineAcquisto
- DatiPagamento
- DatiRicezione
- DatiRiepilogo
- DatiRitenuta
- DatiSAL
- DatiTrasmissione
- DatiTrasporto
- DatiVeicoli
- DettaglioLinee
- DettaglioPagamento
- DocumentData
- Error
- Event
- FatturaElettronicaBody
- FatturaElettronicaHeader
- FatturaOrdinaria
- FatturaPrincipale
- IdFiscaleIVA
- IdTrasmittente
- IndirizzoResa
- IscrizioneREA
- ProblemDetails
- ProblemHttpResult
- RappresentanteFiscale
- RappresentanteFiscaleCessionarioCommittente
- Receive
- ScontoMaggiorazione
- SedeCedentePrestatore
- SedeCessionarioCommittente
- Send
- StabileOrganizzazione
- Status
- TerzoIntermediarioOSoggettoEmittente
- Update
- WebHook
- WebHookHistory
Authentication schemes defined for the API:
- Type: HTTP basic authentication
Example
auth := context.WithValue(context.Background(), invoicetronicsdk.ContextBasicAuth, invoicetronicsdk.BasicAuth{
UserName: "username",
Password: "password",
})
r, err := client.Service.Operation(auth, args)
Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:
PtrBool
PtrInt
PtrInt32
PtrInt64
PtrFloat
PtrFloat32
PtrFloat64
PtrString
PtrTime