Coupa (Publisher indipendente) (anteprima)
Fornisce un accesso affidabile per leggere, modificare o integrare i dati con la piattaforma Coupa.
Questo connettore è disponibile nei prodotti e nelle aree seguenti:
| Servizio | Class | Regions |
|---|---|---|
| Copilot Studio | Di alta qualità | Tutte le aree Power Automate ad eccezione delle seguenti: - Governo degli Stati Uniti (GCC) - Us Government (GCC High) - China Cloud gestito da 21Vianet - Dipartimento della Difesa degli Stati Uniti (DoD) |
| App per la logica | Normale | Tutte le aree di App per la logica , ad eccezione delle seguenti: - aree Azure per enti pubblici - Azure cina - Dipartimento della Difesa degli Stati Uniti (DoD) |
| Power Apps | Di alta qualità | Tutte le aree Power Apps ad eccezione delle seguenti: - Governo degli Stati Uniti (GCC) - Us Government (GCC High) - China Cloud gestito da 21Vianet - Dipartimento della Difesa degli Stati Uniti (DoD) |
| Power Automate | Di alta qualità | Tutte le aree Power Automate ad eccezione delle seguenti: - Governo degli Stati Uniti (GCC) - Us Government (GCC High) - China Cloud gestito da 21Vianet - Dipartimento della Difesa degli Stati Uniti (DoD) |
| Contatto | |
|---|---|
| Nome | NovaGL |
| URL | https://www.coupa.com |
| gl1@live.om |
| Metadati del connettore | |
|---|---|
| Publisher | NovaGL |
| Sito web | https://www.coupa.com |
| Informativa sulla privacy | https://www.coupa.com/privacy-policy |
| Categorie | Commercio |
Connettore Coupa P2P
Publisher: NovaGL
Versione: 1.8.15
Operazioni: 152
Entità: 33
Un Power Automate connettore personalizzato per Coupa Procurement & API Di pagamento degli account. Copre gli ordini di acquisto, le fatture, le richieste, i contratti, l'approvvigionamento, i fornitori e altro ancora.
Prerequisiti
- Istanza di Coupa con accesso all'API abilitato
- Un client OAuth2 configurato in Coupa in Configurazione → client OAuth2/OpenID Connect
- Il client deve usare il tipo di concessione client_credentials
- Ambiti OAuth2 appropriati concessi al client
Autenticazione
Questo connettore usa No Authentication con una riscrittura dei criteri, ovvero la soluzione alternativa della community confermata per l'inserimento di un token di connessione dinamico nei connettori personalizzati Power Automate.
Funzionamento
Ogni azione espone un campo di intestazione del token di accesso . Un criterio connettore riscrive questo nell'intestazione reale Authorization prima che la richiesta raggiunga Coupa:
Flow passes: Access-Token: Bearer eyJ...
Policy rewrites: Authorization: Bearer eyJ...
Coupa receives: Authorization: Bearer eyJ...
Ciò funziona perché la piattaforma blocca solo l'aggiunta Authorization come parametro direttamente, ma non impedisce a un criterio di impostarlo in base a un altro valore di intestazione.
Recupero di un token di connessione
Usare l'azione standard Power Automate HTTP nella parte superiore di ogni flusso per ottenere un token dall'endpoint OAuth2 di Coupa:
Method: POST
URI: https://{instance}.{domain}/oauth2/token
Headers: Content-Type: application/x-www-form-urlencoded
Body: grant_type=client_credentials
&client_id={your-client-id}
&client_secret={your-client-secret}
&scope={your-scopes}
Configurazione connessione
Quando si crea una connessione, specificare due campi:
| Campo | Description |
|---|---|
| Nome istanza coupa | Solo sottodominio, ad esempio mycompany-test (non l'URL completo) |
| Dominio Coupa |
coupahost.com (standard) o coupacloud.com |
Modello di flusso
Ogni flusso deve seguire questo modello:
Passaggio 1 - Azione HTTP per ottenere il token (vedere sopra)
Passaggio 2 : Inizializzare una variabile
| Campo | Valore |
|---|---|
| Nome | token |
| TIPO | Stringa |
| Valore | concat('Bearer ', body('HTTP')?['access_token']) |
Passaggio 3 - Azione connettore - passare @{variables('token')} il campo Token di accesso di ogni azione del connettore
Scadenza token
I token scadono dopo circa 1 ora. Recuperare sempre un nuovo token all'inizio di ogni esecuzione del flusso. Non memorizzare mai nella cache i token tra le esecuzioni.
Ambiti consigliati
Richiedere solo gli ambiti necessari per i flussi:
| Ambito | Access |
|---|---|
core.purchase_order.read |
Leggere gli ordini di acquisto |
core.purchase_order.write |
Creare/aggiornare gli ordini di acquisto |
core.invoice.read |
Leggere le fatture |
core.invoice.write |
Creare/aggiornare le fatture |
core.requisition.read |
Richieste di lettura |
core.requisition.write |
Richieste di creazione/aggiornamento |
core.contract.read |
Leggere i contratti |
core.contract.write |
Creare/aggiornare contratti |
core.supplier.read |
Leggere i fornitori |
core.supplier.write |
Aggiornare i fornitori |
core.user.read |
Leggere gli utenti |
core.common.read |
Leggere i dati comuni (account, indirizzi e così via) |
core.sourcing.read |
Legge gli eventi di origine |
core.sourcing.write |
Creare/aggiornare gli eventi di origine |
core.inventory.read |
Leggere l'inventario |
core.budget.read |
Leggere le righe di budget |
core.approval.read |
Leggere le approvazioni |
core.receiving.read |
Leggere le transazioni di ricezione |
core.receiving.write |
Creare transazioni riceventi |
core.order_pad.read |
Leggere gli elenchi di ordini |
core.order_pad.write |
Creare/aggiornare elenchi di ordini |
Flusso di esempio: ottenere l'ordine di acquisto più recente
Passaggio 1 : HTTP (get token)
| Campo | Valore |
|---|---|
| metodo | POST |
| URI (Identificatore Uniforme delle Risorse) | https://mycompany-test.coupahost.com/oauth2/token |
| Intestazioni | Content-Type: application/x-www-form-urlencoded |
| Corpo | grant_type=client_credentials&client_id=xxx&client_secret=xxx&scope=core.purchase_order.read |
Passaggio 2 : Inizializzare una variabile
| Campo | Valore |
|---|---|
| Nome | token |
| TIPO | Stringa |
| Valore | concat('Bearer ', body('HTTP')?['access_token']) |
Passaggio 3 - Ordine di acquisto: Ottieni tutto
| Campo | Valore |
|---|---|
| Token di accesso | @{variables('token')} |
| Limite | 1 |
| Ordina per | created-at |
| Direction | desc |
Passaggio 4 - Usare il risultato
first(body('Purchase_Order_Get_All'))
first(body('Purchase_Order_Get_All'))?['po-number']
first(body('Purchase_Order_Get_All'))?['id']
Operations
Account (2)
| Action | Description |
|---|---|
| Account: Ottieni tutto | Recuperare tutti gli account |
| Account: Ottenere per ID | Recuperare un singolo account in base all'ID |
Indirizzo (2)
| Action | Description |
|---|---|
| Indirizzo: Ottieni tutto | Recuperare tutti gli indirizzi |
| Indirizzo: Ottenere per ID | Recuperare un singolo indirizzo in base all'ID |
Approvazione (2)
| Action | Description |
|---|---|
| Approvazione: Ottieni tutto | Recuperare tutte le approvazioni |
| Approvazione: Ottenere per ID | Recuperare una singola approvazione in base all'ID |
Linea budget (2)
| Action | Description |
|---|---|
| Linea budget: Ottieni tutto | Recuperare tutte le righe di budget |
| Linea budget: Ottenere per ID | Recuperare una singola riga di budget in base all'ID |
Materie prime (2)
| Action | Description |
|---|---|
| Materie prime: Ottieni tutto | Recuperare tutte le materie prime |
| Commodity: Ottenere per ID | Recuperare una singola merce in base all'ID |
Contratto (13)
| Action | Description |
|---|---|
| Contratto: Ottieni tutto | Recuperare tutti i contratti |
| Contratto: Ottenere per ID | Recuperare un singolo contratto in base all'ID |
| Contratto: Ottenere le condizioni | Recuperare tutte le condizioni per un contratto |
| Contratto: Ottenere il termine in base all'ID | Recuperare un termine di contratto specifico in base all'ID |
| Contratto: Crea termine | Aggiungere un nuovo termine a un contratto |
| Contratto: Termine di aggiornamento | Aggiornare un termine di contratto esistente |
| Contratto: Ottenere allegati | Recuperare tutti gli allegati in un contratto |
| Contratto: Post Attachment (Testo o URL) | Aggiungere un allegato di testo o URL a un contratto |
| Contratto: Aggiungi responsabile approvazione | Aggiungere manualmente un responsabile approvazione a un contratto |
| Contratto: Rimuovi responsabile approvazione | Rimuovere un responsabile approvazione aggiunto manualmente da un contratto |
| Contratto: Invia per l'approvazione | Inviare un contratto per l'approvazione |
| Contratto: completato | Spostare un contratto nello stato completato |
| Contratto: Creare e pubblicare | Creare e pubblicare un contratto |
Origine dati (1)
| Action | Description |
|---|---|
| Origine dati: Recupera tutto | Recuperare tutte le origini file di dati |
Exchange tariffa (2)
| Action | Description |
|---|---|
| Exchange Tariffa: Ottieni tutto | Recuperare tutti i tassi di cambio |
| Exchange Rate: Get by ID | Recuperare un singolo tasso di cambio in base all'ID |
Esecuzione integrazione (2)
| Action | Description |
|---|---|
| Esecuzione integrazione: Ottieni tutto | Recuperare tutte le esecuzioni di integrazione |
| Esecuzione integrazione: Ottenere per ID | Recuperare una singola esecuzione di integrazione in base all'ID |
Inventario (2)
| Action | Description |
|---|---|
| Inventario: Ottieni tutto | Recuperare tutti i record di inventario |
| Inventario: Ottenere per ID | Recuperare un singolo record di inventario in base all'ID |
Transazione di inventario (2)
| Action | Description |
|---|---|
| Transazione di inventario: Recupera tutto | Recuperare tutte le transazioni di inventario |
| Transazione di inventario: Ottenere per ID | Recuperare una singola transazione di inventario in base all'ID |
Fattura (25)
| Action | Description |
|---|---|
| Fattura: Ottieni tutto | Recuperare tutte le fatture |
| Fattura: Ottenere per ID | Recuperare una singola fattura in base all'ID |
| Fattura: aggiornamento (parziale) | Aggiornare parzialmente una fattura (PATCH) |
| Fattura: aggiornamento (completo) | Aggiornare completamente una fattura (PUT) |
| Fattura: Eliminazione | Eliminare una fattura |
| Fattura: Ottenere allegati | Recuperare tutti gli allegati in una fattura |
| Fattura: Allegato post (testo o URL) | Aggiungere un allegato di testo o URL a una fattura |
| Fattura: Ottenere commenti | Recuperare tutti i commenti in una fattura |
| Fattura: Pubblica commento | Aggiungere un commento a una fattura |
| Fattura: Abbandono | Abbandonare una fattura |
| Fattura: Aggiungi responsabile approvazione | Aggiungere manualmente un responsabile approvazione a una fattura |
| Fattura: Ignorare le approvazioni | Ignorare il flusso di lavoro di approvazione completo |
| Fattura: Ignorare l'approvazione corrente | Ignorare solo il passaggio di approvazione corrente |
| Fattura: Controversia | Contestare una fattura |
| Fattura: controversia di ritiro | Ritirare una controversia su una fattura |
| Fattura: Passare all'avviso di spedizione anticipata | Convertire una fattura in una notifica di spedizione anticipata |
| Fattura: Rimuovi responsabile approvazione | Rimuovere un responsabile approvazione aggiunto manualmente |
| Fattura: riavviare le approvazioni | Riavviare il flusso di lavoro di approvazione |
| Fattura: riconvalida delle tolleranze | Riconvalidare i controlli di tolleranza |
| Fattura: Invia per l'approvazione | Inviare una fattura per l'approvazione |
| Fattura: aggiornare gli account riga | Aggiornare la codifica dell'account nelle righe della fattura |
| Fattura: Void | Annullare una fattura |
| Fattura: Scarica documento di autorizzazione | Scaricare il documento di autorizzazione |
| Fattura: Scarica analisi immagini | Scaricare l'analisi delle immagini |
| Fattura: Scaricare il PDF della fattura legale | Scaricare il PDF della fattura legale |
Elemento (2)
| Action | Description |
|---|---|
| Elemento: Ottieni tutto | Recuperare tutti gli elementi |
| Elemento: Ottenere per ID | Recuperare un singolo elemento in base all'ID |
Ricerca (2)
| Action | Description |
|---|---|
| Ricerca: Ottieni tutto | Recuperare tutte le ricerche |
| Ricerca: Ottenere per ID | Recuperare una singola ricerca in base all'ID |
Valore di ricerca (4)
| Action | Description |
|---|---|
| Valore di ricerca: Recupera tutto | Recuperare tutti i valori di ricerca |
| Valore di ricerca: Ottenere per ID | Recuperare un singolo valore di ricerca in base all'ID |
| Valore di ricerca: Crea | Creare un nuovo valore di ricerca |
| Valore di ricerca: aggiornamento | Aggiornare un valore di ricerca esistente |
Elenco ordini (4)
| Action | Description |
|---|---|
| Elenco ordini: Ottieni tutto | Recuperare tutti gli elenchi di ordini |
| Elenco ordini: Ottenere per ID | Recuperare un singolo elenco di ordini in base all'ID |
| Elenco ordini: Crea | Creare un nuovo elenco di ordini |
| Elenco ordini: Aggiornamento | Aggiornare un elenco di ordini esistente |
Riga elenco ordini (4)
| Action | Description |
|---|---|
| Riga elenco ordini: Ottieni tutto | Recuperare tutte le righe dell'elenco di ordini |
| Riga elenco ordini: Ottenere per ID | Recuperare una singola riga dell'elenco di ordini in base all'ID |
| Riga elenco ordini: Crea | Creare una nuova riga di elenco ordini |
| Riga elenco ordini: aggiornamento | Aggiornare una riga dell'elenco di ordini esistente |
Termine di pagamento (2)
| Action | Description |
|---|---|
| Termine di pagamento: Ottieni tutto | Recuperare tutte le condizioni di pagamento |
| Termine di pagamento: Ottenere per ID | Recuperare un singolo termine di pagamento in base all'ID |
Modifica ordine di acquisto (5)
| Action | Description |
|---|---|
| Modifica ordine di acquisto: Ottieni tutto | Recuperare tutte le modifiche all'ordine di acquisto |
| Modifica ordine di acquisto: Ottenere per ID | Recuperare una singola modifica dell'ordine di acquisto in base all'ID |
| Modifica dell'ordine di acquisto: Aggiungi responsabile approvazione | Aggiungere manualmente un responsabile approvazione a una modifica dell'ordine di acquisto |
| Modifica ordine di acquisto: Rimuovi responsabile approvazione | Rimuovere un responsabile approvazione aggiunto manualmente |
| Modifica dell'ordine di acquisto: Invia per l'approvazione | Inviare una modifica dell'ordine di acquisto per l'approvazione |
Linea PO (8)
| Action | Description |
|---|---|
| Riga ordine di acquisto: Ottieni tutto | Recuperare tutte le righe degli ordini di acquisto |
| Riga ordine di acquisto: Ottenere per ID | Recuperare una singola riga dell'ordine di acquisto in base all'ID |
| Riga ordine di acquisto: Ottenere allegati | Recuperare tutti gli allegati in una riga dell'ordine di acquisto |
| Riga ordine di acquisto: post allegato (testo o URL) | Aggiungere un allegato di testo o URL a una riga dell'ordine di acquisto |
| Riga ordine di acquisto: riaprire per la fatturazione | Riaprire una riga dell'ordine di acquisto per la fatturazione |
| Riga ordine di acquisto: riaprire per la ricezione | Riaprire una riga dell'ordine di acquisto per la ricezione |
| Riga ordine di acquisto: Chiusura temporanea per la fatturazione | Chiusura temporanea di una riga dell'ordine di acquisto per la fatturazione |
| Riga ordine di acquisto: Chiusura temporanea per la ricezione | Chiusura temporanea di una riga di ordine di acquisto per la ricezione |
Ordine di acquisto (11)
| Action | Description |
|---|---|
| Ordine di acquisto: Ottieni tutto | Recuperare tutti gli ordini di acquisto |
| Ordine di acquisto: Ottenere per ID | Recuperare un singolo ordine di acquisto in base all'ID |
| Ordine di acquisto: Ottieni allegati | Recuperare tutti gli allegati in un ordine di acquisto |
| Ordine di acquisto: Allegato post (testo o URL) | Aggiungere un allegato di testo o URL a un ordine di acquisto |
| Ordine di acquisto: Ottieni commenti | Recuperare tutti i commenti in un ordine di acquisto |
| Ordine di acquisto: Pubblica commento | Aggiungere un commento a un ordine di acquisto |
| Ordine di acquisto: Annulla | Annullare un ordine di acquisto |
| Ordine di acquisto: Chiudi | Chiudere un ordine di acquisto |
| Ordine di acquisto: Problema | Emettere un ordine di acquisto al fornitore |
| Ordine di acquisto: rilascio dal blocco acquirente | Rilasciare un ordine di acquisto dal blocco acquirente |
| Ordine di acquisto: Riaprire | Riaprire un ordine di acquisto chiuso |
Richiesta di ricezione (2)
| Action | Description |
|---|---|
| Richiesta di ricezione: Ottieni tutto | Recuperare tutte le richieste di ricezione |
| Richiesta di ricezione: Ottenere per ID | Recuperare una singola richiesta di ricevuta in base all'ID |
Ricezione transazione (4)
| Action | Description |
|---|---|
| Ricezione della transazione: Recupera tutto | Recuperare tutte le transazioni riceventi |
| Ricezione della transazione: Ottenere per ID | Recuperare una singola transazione di ricezione in base all'ID |
| Ricezione della transazione: Ottenere allegati | Recuperare tutti gli allegati in una transazione ricevente |
| Ricezione transazione: post allegato (testo o URL) | Aggiungere un allegato di testo o URL a una transazione ricevente |
Richiesta (13)
| Action | Description |
|---|---|
| Richiesta: Ottieni tutto | Recuperare tutte le richieste |
| Richiesta: Ottenere per ID | Recuperare una singola richiesta in base all'ID |
| Richiesta: Ottenere allegati | Recuperare tutti gli allegati in una richiesta |
| Richiesta: post allegato (testo o URL) | Aggiungere un allegato di testo o URL a una richiesta |
| Richiesta: Ottenere commenti | Recuperare tutti i commenti in una richiesta |
| Richiesta: Pubblica commento | Aggiungere un commento a una richiesta |
| Richiesta: Get Mine | Recuperare le richieste appartenenti all'utente autenticato |
| Richiesta: Ottenere il carrello corrente | Recuperare il carrello acquisti corrente |
| Richiesta: Aggiungi al carrello (testo libero) | Aggiungere una voce di testo libero al carrello corrente |
| Richiesta: Aggiungi responsabile approvazione | Aggiungere manualmente un responsabile approvazione a una richiesta |
| Richiesta: Rimuovi responsabile approvazione | Rimuovere un responsabile approvazione aggiunto manualmente |
| Richiesta: Creare e inviare | Creare una richiesta e inviare per l'approvazione |
| Richiesta: Aggiornare e inviare | Aggiornare una richiesta e inviare per l'approvazione |
Riga richiesta (2)
| Action | Description |
|---|---|
| Riga richiesta: Ottenere allegati | Recuperare tutti gli allegati in una riga di richiesta |
| Riga richiesta: post allegato (testo o URL) | Aggiungere un allegato di testo o URL a una riga di richiesta |
Origine (13)
| Action | Description |
|---|---|
| Origine: Ottenere richieste di offerta | Recuperare tutte le richieste di offerta |
| Origine: Ottenere una richiesta di offerta in base all'ID | Recuperare una singola richiesta di offerta in base all'ID |
| Origine: Creare una richiesta di offerta | Creare una nuova richiesta di offerta |
| Sourcing: Aggiornare la richiesta di offerta | Aggiornare una richiesta di offerta esistente |
| Origine: Ottenere allegati di richiesta di offerta | Recuperare allegati in una richiesta di offerta |
| Sourcing: Post Quote Request Attachment (Testo o URL) | Aggiungere un allegato di testo o URL a una richiesta di offerta |
| Origine: Ottenere la risposta di offerta per ID | Recuperare una singola risposta tra virgolette in base all'ID |
| Origine: ottenere tutte le risposte di offerta | Recuperare tutte le risposte tra virgolette in tutti gli eventi |
| Sourcing: Ottenere tutte le risposte di preventivo (incluse le bozze) | Recuperare tutte le risposte tra virgolette, incluse le bozze |
| Origine: Ottenere risposte di offerta per l'evento | Recuperare le risposte tra virgolette per un evento specifico |
| Origine: Ottenere risposte di preventivo per l'evento (tutti) | Recuperare tutte le risposte tra virgolette per un evento specifico, incluse le bozze |
| Sourcing: Award Quote Response | Assegnare una risposta di offerta a un fornitore |
| Sourcing: Remove Quote Response Award | Rimuovere un premio da una risposta di offerta |
Fornitore (3)
| Action | Description |
|---|---|
| Fornitore: Ottieni tutto | Recuperare tutti i fornitori |
| Fornitore: Ottenere per ID | Recuperare un singolo fornitore in base all'ID |
| Fornitore: Aggiornamento | Aggiornare un fornitore esistente |
Informazioni sul fornitore (2)
| Action | Description |
|---|---|
| Informazioni sui fornitori: Ottieni tutto | Recuperare tutti i record di informazioni sui fornitori |
| Informazioni sui fornitori: Ottenere per ID | Recuperare un singolo record di informazioni fornitore in base all'ID |
Articolo fornitore (6)
| Action | Description |
|---|---|
| Elemento fornitore: Ottieni tutto | Recuperare tutti gli articoli fornitore |
| Elemento fornitore: Ottenere in base all'ID | Recuperare un singolo articolo fornitore in base all'ID |
| Elemento fornitore: Ottieni per articolo | Recuperare gli articoli fornitore per un articolo specifico |
| Elemento fornitore: Ottenere per articolo e ID | Recuperare un articolo fornitore specifico per un articolo specifico |
| Elemento fornitore: Crea | Creare un nuovo elemento fornitore |
| Elemento fornitore: Aggiornamento | Aggiornare un articolo fornitore esistente |
UOM (2)
| Action | Description |
|---|---|
| UOM: Ottieni tutto | Recuperare tutte le unità di misura |
| UOM: Ottenere per ID | Recuperare una singola unità di misura in base all'ID |
Utente (2)
| Action | Description |
|---|---|
| Utente: Ottieni tutto | Recuperare tutti gli utenti |
| Utente: Ottenere per ID | Recuperare un singolo utente in base all'ID |
Gruppo utenti (2)
| Action | Description |
|---|---|
| Gruppo utenti: Ottieni tutto | Recuperare tutti i gruppi di utenti |
| Gruppo utenti: Ottenere per ID | Recuperare un singolo gruppo di utenti in base all'ID |
Appartenenza al gruppo utenti (2)
| Action | Description |
|---|---|
| Appartenenza a un gruppo di utenti: Ottieni tutto | Recuperare tutte le appartenenze ai gruppi di utenti |
| Appartenenza al gruppo di utenti: Ottenere per ID | Recuperare un'appartenenza a un singolo gruppo di utenti in base all'ID |
Limitazioni note
Caricamenti di file non supportati
I caricamenti degli allegati di file (multipart/form-data) non sono supportati nei connettori personalizzati Power Automate. Per caricare i file negli allegati Coupa, usare l'azione HTTP standard direttamente con la codifica multipart.
Gestione di token
Il connettore non gestisce automaticamente l'aggiornamento del token. I token scadono dopo circa 1 ora. Recuperare sempre un nuovo token usando l'azione HTTP all'inizio di ogni esecuzione del flusso.
Campi numerici restituiti come stringhe
Coupa restituisce valori monetari e di quantità (totali, prezzi, importi) come stringhe anziché numeri, ad esempio "1250.00" non 1250.00. Questo è uno straccio di Coupa noto. Tenere conto di questo problema quando si usano questi valori nei calcoli all'interno del flusso.
Campi booleani
Alcuni campi booleani coupa vengono restituiti come "true"/"false" stringhe anziché come valori booleani effettivi. Usare equals(field, 'true') anziché un confronto booleano diretto in condizioni di flusso.
Limitazione indipendente Publisher OAuth2
Power Automate non supporta il tipo di concessione delle credenziali client OAuth2 per i connettori di server di pubblicazione indipendenti. Il modello di intestazione Access-Token usato da questo connettore è la soluzione alternativa della community stabilita.
Filtro e paginazione
Tutte le operazioni Get All supportano questi parametri standard:
| Parametro | Description |
|---|---|
| Limit | Numero massimo di record da restituire (massimo 50 per chiamata) |
| offset | Record da ignorare: usare per l'impaginazione |
| Ordina per | Nome campo da ordinare, ad esempio created-at |
| Direzione | Direzione di ordinamento: asc o desc |
| Aggiornato dopo | Restituisce record aggiornati dopo questa data ISO 8601, ideale per i flussi di polling/delta |
| Aggiornato prima | Restituire i record aggiornati prima della data ISO 8601 |
| Creato dopo | Restituire i record creati dopo la data ISO 8601 |
| Oggetto Return | Profondità risposta: limited, shallowo omettere per l'intero |
Modello di paginazione
Do Until (no more results):
Purchase Order: Get All
Limit: 50
Offset: @{variables('offset')}
Append to array variable: @{body('Purchase_Order_Get_All')}
Increment offset by 50
Condition: length(body('Purchase_Order_Get_All')) is less than 50
Modello delta/polling
Purchase Order: Get All
Updated After: @{addHours(utcNow(), -1)}
Order By: updated-at
Direction: desc
Cronologia delle versioni
| Versione | Changes |
|---|---|
| 1.8.15 | Sono state aggiunte descrizioni a 738 risposte, 739 proprietà di definizione e 1 parametro mancante |
| 1.8.14 | Tipo di ContractTerm.id fisso; cleaned up operationIds (CompleteContract, SubmitContractForApproval) |
| 1.8.13 | Aggiunta della definizione ContractTerm; schemi di termini di contratto fissi |
| 1.8.12 | Rimozione dell'analisi dell'immagine fattura multipart; controllo completo dello schema annidato |
| 1.8.11 | Correzione di 13 schemi di risposta errati nei percorsi annidati (elemento fornitore, riga elenco ordini, origine, condizioni di contratto) |
| 1.8.10 | Rimozione di supplier_items/endpoint di ricerca non documentati |
| 1.8.9 | Rimosso tutti i vincoli di tipo foglia dalle definizioni, senza più convalida dei tipi nelle risposte |
| 1.8.8 | Correzione di 36 riepiloghi e descrizioni dei parametri mancanti |
| 1.8.7 | Rimosse tutte le 9 operazioni di caricamento di file multipart (limitazione della piattaforma) |
| 1.8.6 | Correzione di numeri interi non ID e nullable per data e ora; controllo dei tipi completo |
| 1.8.5 | Numero fisso (nessun formato) e campi di tipo booleano |
| 1.8.4 | Convertito tutti i campi number/double in stringa (Coupa restituisce valori monetari come stringhe) |
| 1.8.3 | Schemi inline fissi; aggiunte definizioni mancanti (InventoryRecord, InventoryTransaction, ReceiptRequest, DataFileSource); correzione di $refs allegato/commento |
| 1.8.2 | Correzione di 4 schemi di oggetti inline nelle esecuzioni di integrazione, nelle origini dati e nei commenti di richiesta |
| 1.8.1 | Aggiunte descrizioni a 27 operazioni mancanti |
| 1.8.0 | Impostare tutte le 162 operazioni su visibilità importante |
| 1.7.9 | Rimozione di tutti i vincoli di tipo dalle proprietà di definizione |
| 1.7.8 | Rimosso tutti gli schemi di risposta per evitare errori di convalida dei tipi |
| 1.7.7 | Correzione degli errori di imposizione del tipo di risposta |
| 1.7.6 | Visibilità dei parametri fissa: importante/avanzata/interna applicata correttamente |
| 1.7.5 | Correzione delle incoerenze di riepilogo; spostate le operazioni fornitore di articoli nel gruppo Di articoli fornitore |
| 1.7.4 | Richiesta fissa: Ottenere il mio e aggiungere ai riepiloghi del carrello |
| 1.7.3 | Abbreviazioni di prefisso sostituite con nomi di entità completi in tutti i riepiloghi |
| 1.7.2 | Impostare Ottieni tutte le operazioni su visibilità importante |
| 1.7.1 | Rimosso tutti i flag x-ms-trigger: flag batch - Get All ops sono stati nascosti come trigger |
| 1.7.0 | Ricompilazione completa dalla base 1.3.0: Access-Token autenticazione, riepiloghi completi, operationId, allegati, commenti |
| 1.3.0 | File di base originale |
Creazione di una connessione
Il connettore supporta i tipi di autenticazione seguenti:
| Predefinita | Parametri per la creazione della connessione. | Tutte le aree geografiche | Non condivisibile |
Predefinito
Applicabile: tutte le aree
Parametri per la creazione della connessione.
Questa non è una connessione condivisibile. Se l'app power viene condivisa con un altro utente, verrà richiesto a un altro utente di creare una nuova connessione in modo esplicito.
| Nome | TIPO | Description | Obbligatorio |
|---|---|---|---|
| Nome istanza coupa | corda | Immettere coupa nome istanza escluso coupahost.com | Vero |
| Ambito Coupa | corda | Immettere gli ambiti Oidc coupa senza virgole | Vero |
| Coupa Client Id | corda | Immettere l'ID client Coupa | Vero |
| Coupa Client Secret | securestring | Immettere Coupa Client Secret | Vero |
Limiti per la limitazione delle richieste
| Nome | Chiamate | Periodo di rinnovo |
|---|---|---|
| Chiamate API per connessione | 100 | 60 secondi |
Azioni
Allegati - Aggiungere allegato (URL) a un commento
Aggiungere un allegato (URL) a un commento
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
ID commento
|
id | True | string |
ID commento |
|
id
|
id | integer |
id |
|
|
type
|
type | string |
type |
|
|
Intento
|
intent | string |
intento |
|
|
URL
|
url | string |
URL |
Valori restituiti
- Corpo
- Attachments
Allegati - Aggiungere allegato (URL) a un ordine di acquisto
Aggiungere allegato (URL) a un ordine di acquisto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
id
|
id | integer |
id |
|
|
type
|
type | string |
type |
|
|
Intento
|
intent | string |
intento |
|
|
URL
|
url | string |
URL |
Valori restituiti
- Corpo
- Attachments
Allegati - Ottenere allegati da un ordine di acquisto
Ottenere allegati da un ordine di acquisto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
Valori restituiti
- response
- array of Attachments
Commenti - Aggiungi commento ordine di acquisto
PUBBLICARE un commento sull'ordine di acquisto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
po_id
|
po_id | True | string |
ID ordine acquisto |
|
ID commentabile
|
commentable-id | integer |
ID commentabile |
|
|
comments
|
comments | string |
comments |
Valori restituiti
- Corpo
- Comments
Contratti - Aggiungere un termine di contratto
Aggiungere un termine di contratto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
contract-term-type
|
contract-term-type | string |
tipo di termine del contratto |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
tier-1-disc-pct
|
tier-1-disc-pct | string |
tier_1_disc_pct |
|
|
tier-1-upper-bound
|
tier-1-upper-bound | string |
tier_1_upper_bound |
|
|
tier-2-disc-pct
|
tier-2-disc-pct | string |
tier_2_disc_pct |
|
|
tier-2-upper-bound
|
tier-2-upper-bound | string |
tier_2_upper_bound |
|
|
tier-3-disc-pct
|
tier-3-disc-pct | string |
tier_3_disc_pct |
|
|
tier-3-upper-bound
|
tier-3-upper-bound | string |
tier_3_upper_bound |
|
|
type
|
type | string |
type |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
use-pct-discount
|
use-pct-discounts | string |
use_pct_discounts |
Valori restituiti
- Corpo
- ContractTerm
Contratti - Creare un contratto
Creare un contratto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
contract-term-type
|
contract-term-type | string |
tipo di termine del contratto |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
tier-1-disc-pct
|
tier-1-disc-pct | string |
tier_1_disc_pct |
|
|
tier-1-upper-bound
|
tier-1-upper-bound | string |
tier_1_upper_bound |
|
|
tier-2-disc-pct
|
tier-2-disc-pct | string |
tier_2_disc_pct |
|
|
tier-2-upper-bound
|
tier-2-upper-bound | string |
tier_2_upper_bound |
|
|
tier-3-disc-pct
|
tier-3-disc-pct | string |
tier_3_disc_pct |
|
|
tier-3-upper-bound
|
tier-3-upper-bound | string |
tier_3_upper_bound |
|
|
type
|
type | string |
type |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
use-pct-discount
|
use-pct-discounts | string |
use_pct_discounts |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Note descrittive sul contratto |
|
|
data di fine
|
end-date | string |
Data di scadenza |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
valore massimo
|
maximum-value | string |
Quantità massima commit |
|
|
valore minimo
|
minimum-value | string |
Importo minimo commit |
|
|
nome
|
name | string |
Nome contratto |
|
|
numero
|
number | string |
Numero contratto |
|
|
data di inizio
|
start-date | string |
Data di inizio |
|
|
status
|
status | string |
Stato del contratto |
|
|
numero account
|
account-number | string |
Numero account |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
display-name
|
display-name | string |
display_name |
|
|
id
|
id | integer |
Coupa Internal ID |
|
|
nome
|
name | string |
Nome fornitore |
|
|
numero
|
number | string |
Numero fornitore |
|
|
status
|
status | string |
Stato fornitore |
|
|
account fornitore
|
supplier-account | string |
Numero account fornitore |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
version
|
version | integer |
version |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- Corpo
- Contract
Contratti - Ottenere contratti
Ottenere contratti
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
offset
|
offset | integer |
Offset |
|
|
limit
|
limit | integer |
Limite |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
|
|
dir
|
dir | string |
dir |
Valori restituiti
- response
- array of Contract
Contratti - Ottenere il contratto in base all'ID
Ottenere il contratto in base all'ID
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
offset
|
offset | integer |
Offset |
|
|
return_object
|
return_object | string |
return_object |
|
|
dir
|
dir | string |
dir |
Valori restituiti
- Corpo
- Contract
Elementi - Crea elemento
Crea elemento
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
nome
|
name | string |
Nome elemento |
|
|
descrizione
|
description | string |
Desciption dell'elemento |
|
|
numero di elemento
|
item-number | string |
Numero di elemento univoco |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
updated-at |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
image-url
|
image-url | string |
URL per l'immagine dell'elemento (verrà copiato in Coupa in creazione/aggiornamento dell'elemento) |
Valori restituiti
- Corpo
- Item
Elementi - Elementi di query
Elementi di query
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of Item
Elementi - Ottenere l'articolo fornitore in base all'ID
Ottenere gli elementi fornitore in base all'ID
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
offset
|
offset | integer |
Offset |
|
|
return_object
|
return_object | string |
return_object |
|
|
dir
|
dir | string |
dir |
Valori restituiti
- Corpo
- SupplierItem
Elenchi di ordini - Crea elenco ordini
Crea elenco ordini
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
add-all-items
|
add-all-items | string |
Flag che indica l'aggiunta di tutti gli elementi |
|
|
any-supplier
|
any-supplier | string |
any_supplier |
|
|
base-value
|
base-value |
base_value |
||
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
nome
|
name | string |
Nome elemento |
|
|
descrizione
|
description | string |
Desciption dell'elemento |
|
|
numero di elemento
|
item-number | string |
Numero di elemento univoco |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
updated-at |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
image-url
|
image-url | string |
URL per l'immagine dell'elemento (verrà copiato in Coupa in creazione/aggiornamento dell'elemento) |
|
|
order-amount-method
|
order-amount-method | True | string |
order_amount_method |
|
supplier-id
|
supplier-id | True | integer |
supplier_id |
|
par-level
|
par-level | number |
par_level |
|
|
importo
|
amount | number |
importo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
Valori restituiti
- Corpo
- OrderPad
Elenchi di ordini - Elenchi di ordini di query
Elenchi di ordini di query
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of OrderPad
Elenchi di ordini - Ottenere l'elenco degli ordini in base all'ID
Mostra elenco ordini
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | integer |
id |
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- Corpo
- OrderPad
Fattura - Ottenere le fatture
Ottenere fatture
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
dir
|
dir | string |
dir |
|
|
Data fattura minore di
|
invoice_date[lt] | date-time |
Data fattura < |
|
|
return_object
|
return_object | string |
return_object |
|
|
limit
|
limit | string |
limit |
|
|
offset
|
offset | string |
offset |
|
|
status
|
status | string |
status |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of Invoices
Fatture - Aggiornare la fattura
Aggiornare la fattura
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
ID fattura |
|
data fattura
|
invoice-date | string |
data fattura |
|
|
numero fattura
|
invoice-number | string |
numero fattura |
|
|
imposizione a livello di linea
|
line-level-taxation | boolean |
imposizione a livello di linea |
|
|
totale con imposte
|
total-with-taxes | string |
totale con imposte |
|
|
tipo di documento
|
document-type | string |
tipo di documento |
|
|
Accesso al sistema
|
login | string |
Accesso al sistema |
|
|
attivo
|
active | boolean |
Un valore false inattiverà il COA |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
numero account
|
account-number | string |
Numero account |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
display-name
|
display-name | string |
display_name |
|
|
id
|
id | integer |
Coupa Internal ID |
|
|
nome
|
name | string |
Nome fornitore |
|
|
numero
|
number | string |
Numero fornitore |
|
|
status
|
status | string |
Stato fornitore |
|
|
location-code
|
ship-to-address | string |
location-code |
|
|
attivo
|
active | boolean |
Un valore false inattiverà il COA |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
account-type-id
|
account-type-id | integer |
ID tipo di account |
|
|
attivo
|
active | boolean |
Flag Attivo\Inattivo |
|
|
codice
|
code | string |
Tutti i segmenti concatenati con un trattino ( - ) |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
Questo è il soprannome per l'account. |
|
|
segment-1
|
segment-1 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 2
|
segment-2 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 3
|
segment-3 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 4
|
segment-4 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento-5
|
segment-5 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 6
|
segment-6 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
contabilità totale
|
accounting-total | string |
contabilità totale |
|
|
descrizione
|
description | string |
descrizione |
|
|
line-num
|
line-num | integer |
line-num |
|
|
line-id
|
id | integer |
Coupa Internal Order Line ID |
|
|
order-header-num
|
order-header-num | integer |
order-header-num |
|
|
po-number
|
po-number | string |
po-number |
|
|
order-line-num
|
order-line-num | string |
order-line-num |
|
|
price
|
price | string |
price |
|
|
quantità
|
quantity | string |
quantità |
|
|
totale
|
total | string |
totale |
|
|
type
|
type | string |
type |
|
|
contract-term-type
|
contract-term-type | string |
tipo di termine del contratto |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
tier-1-disc-pct
|
tier-1-disc-pct | string |
tier_1_disc_pct |
|
|
tier-1-upper-bound
|
tier-1-upper-bound | string |
tier_1_upper_bound |
|
|
tier-2-disc-pct
|
tier-2-disc-pct | string |
tier_2_disc_pct |
|
|
tier-2-upper-bound
|
tier-2-upper-bound | string |
tier_2_upper_bound |
|
|
tier-3-disc-pct
|
tier-3-disc-pct | string |
tier_3_disc_pct |
|
|
tier-3-upper-bound
|
tier-3-upper-bound | string |
tier_3_upper_bound |
|
|
type
|
type | string |
type |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
use-pct-discount
|
use-pct-discounts | string |
use_pct_discounts |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Note descrittive sul contratto |
|
|
data di fine
|
end-date | string |
Data di scadenza |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
valore massimo
|
maximum-value | string |
Quantità massima commit |
|
|
valore minimo
|
minimum-value | string |
Importo minimo commit |
|
|
nome
|
name | string |
Nome contratto |
|
|
numero
|
number | string |
Numero contratto |
|
|
data di inizio
|
start-date | string |
Data di inizio |
|
|
status
|
status | string |
Stato del contratto |
|
|
numero account
|
account-number | string |
Numero account |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
display-name
|
display-name | string |
display_name |
|
|
id
|
id | integer |
Coupa Internal ID |
|
|
nome
|
name | string |
Nome fornitore |
|
|
numero
|
number | string |
Numero fornitore |
|
|
status
|
status | string |
Stato fornitore |
|
|
account fornitore
|
supplier-account | string |
Numero account fornitore |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
version
|
version | integer |
version |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
id
|
id | integer |
Identificatore univoco coupa |
Valori restituiti
- Corpo
- Invoices
Fatture - Annullare una fattura
Annullare una fattura
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
ID fattura |
Valori restituiti
- Corpo
- Invoices
Fatture - Creare una fattura
Creare una fattura
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
data fattura
|
invoice-date | string |
data fattura |
|
|
numero fattura
|
invoice-number | string |
numero fattura |
|
|
imposizione a livello di linea
|
line-level-taxation | boolean |
imposizione a livello di linea |
|
|
totale con imposte
|
total-with-taxes | string |
totale con imposte |
|
|
tipo di documento
|
document-type | string |
tipo di documento |
|
|
Accesso al sistema
|
login | string |
Accesso al sistema |
|
|
attivo
|
active | boolean |
Un valore false inattiverà il COA |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
numero account
|
account-number | string |
Numero account |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
display-name
|
display-name | string |
display_name |
|
|
id
|
id | integer |
Coupa Internal ID |
|
|
nome
|
name | string |
Nome fornitore |
|
|
numero
|
number | string |
Numero fornitore |
|
|
status
|
status | string |
Stato fornitore |
|
|
location-code
|
ship-to-address | string |
location-code |
|
|
attivo
|
active | boolean |
Un valore false inattiverà il COA |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
account-type-id
|
account-type-id | integer |
ID tipo di account |
|
|
attivo
|
active | boolean |
Flag Attivo\Inattivo |
|
|
codice
|
code | string |
Tutti i segmenti concatenati con un trattino ( - ) |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
Questo è il soprannome per l'account. |
|
|
segment-1
|
segment-1 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 2
|
segment-2 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 3
|
segment-3 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 4
|
segment-4 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento-5
|
segment-5 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 6
|
segment-6 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
contabilità totale
|
accounting-total | string |
contabilità totale |
|
|
descrizione
|
description | string |
descrizione |
|
|
line-num
|
line-num | integer |
line-num |
|
|
line-id
|
id | integer |
Coupa Internal Order Line ID |
|
|
order-header-num
|
order-header-num | integer |
order-header-num |
|
|
po-number
|
po-number | string |
po-number |
|
|
order-line-num
|
order-line-num | string |
order-line-num |
|
|
price
|
price | string |
price |
|
|
quantità
|
quantity | string |
quantità |
|
|
totale
|
total | string |
totale |
|
|
type
|
type | string |
type |
|
|
contract-term-type
|
contract-term-type | string |
tipo di termine del contratto |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
tier-1-disc-pct
|
tier-1-disc-pct | string |
tier_1_disc_pct |
|
|
tier-1-upper-bound
|
tier-1-upper-bound | string |
tier_1_upper_bound |
|
|
tier-2-disc-pct
|
tier-2-disc-pct | string |
tier_2_disc_pct |
|
|
tier-2-upper-bound
|
tier-2-upper-bound | string |
tier_2_upper_bound |
|
|
tier-3-disc-pct
|
tier-3-disc-pct | string |
tier_3_disc_pct |
|
|
tier-3-upper-bound
|
tier-3-upper-bound | string |
tier_3_upper_bound |
|
|
type
|
type | string |
type |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
use-pct-discount
|
use-pct-discounts | string |
use_pct_discounts |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Note descrittive sul contratto |
|
|
data di fine
|
end-date | string |
Data di scadenza |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
valore massimo
|
maximum-value | string |
Quantità massima commit |
|
|
valore minimo
|
minimum-value | string |
Importo minimo commit |
|
|
nome
|
name | string |
Nome contratto |
|
|
numero
|
number | string |
Numero contratto |
|
|
data di inizio
|
start-date | string |
Data di inizio |
|
|
status
|
status | string |
Stato del contratto |
|
|
numero account
|
account-number | string |
Numero account |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
display-name
|
display-name | string |
display_name |
|
|
id
|
id | integer |
Coupa Internal ID |
|
|
nome
|
name | string |
Nome fornitore |
|
|
numero
|
number | string |
Numero fornitore |
|
|
status
|
status | string |
Stato fornitore |
|
|
account fornitore
|
supplier-account | string |
Numero account fornitore |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
version
|
version | integer |
version |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
id
|
id | integer |
Identificatore univoco coupa |
Valori restituiti
- Corpo
- Invoices
Fatture - Elimina fattura per ID
Eliminare le fatture in base all'ID
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
ID fattura |
Fatture - Ottenere la fattura in base all'ID
Ottenere le fatture in base all'ID
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | integer |
id |
Valori restituiti
- Corpo
- Invoices
Fornitori - Fornitori di query
Fornitori di query
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of Supplier
Indirizzi - Aggiornare l'indirizzo esistente
Aggiornare l'indirizzo esistente
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
nome
|
name | string |
nome |
|
|
Codice percorso
|
location-code | string |
location-code |
|
|
street1
|
street1 | string |
street1 |
|
|
strada 2
|
street2 | string |
strada 2 |
|
|
city
|
city | string |
city |
|
|
stato
|
state | string |
state |
|
|
Codice postale
|
postal-code | string |
codice postale |
|
|
codice
|
code | True | string |
codice |
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
Documento d'identità
|
id | integer |
id |
Valori restituiti
- Corpo
- Address
Indirizzi - Crea indirizzo
Crea indirizzo
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
nome
|
name | string |
nome |
|
|
Codice percorso
|
location-code | string |
location-code |
|
|
street1
|
street1 | string |
street1 |
|
|
strada 2
|
street2 | string |
strada 2 |
|
|
city
|
city | string |
city |
|
|
stato
|
state | string |
state |
|
|
Codice postale
|
postal-code | string |
codice postale |
|
|
codice
|
code | True | string |
codice |
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
Documento d'identità
|
id | integer |
id |
Valori restituiti
- Corpo
- Address
Indirizzi - Indirizzi di query
Indirizzo query
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
Valori restituiti
- response
- array of Address
Indirizzi - Ottenere l'indirizzo in base all'ID
Ottenere l'indirizzo
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
Valori restituiti
- Corpo
- Address
Integrazione - Mostra errori di integrazione
Mostra errori di integrazione
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of IntegrationError
Integrazioni - Integrazioni di query
Integrazioni di query
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of Integration
Integrazioni - Mostra esecuzioni di integrazione
Esecuzioni di integrazione delle query
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of IntegrationRun
Integrazioni - Mostra l'esecuzione dell'integrazione
Visualizzare l'esecuzione dell'integrazione
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | integer |
id |
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- Corpo
- IntegrationRun
Items - Get Item by ID
Ottenere l'elemento in base all'ID
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
return_object
|
return_object | string |
return_object |
Valori restituiti
- Corpo
- Item
Ordini di acquisto - Annullare l'ordine di acquisto
Ordini di acquisto - Annullare l'ordine di acquisto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
Valori restituiti
- Corpo
- PurchaseOrder
Ordini di acquisto - Chiudi ordine di acquisto
Ordini di acquisto - Chiudi ordine di acquisto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
Valori restituiti
- Corpo
- PurchaseOrder
Ordini di acquisto - Ottenere l'ordine di acquisto in base all'ID
Ottenere l'ordine di acquisto in base all'ID
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
filtro
|
filter | string |
filtro |
|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
Valori restituiti
- Corpo
- PurchaseOrder
Ordini di acquisto - Ottieni ordini di acquisto
Ottieni ordini di acquisto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
filtro
|
filter | string |
filtro |
|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
Valori restituiti
- response
- array of PurchaseOrder
Ordini di acquisto - Riapri ordine di acquisto
Ordini di acquisto - Riapri ordine di acquisto
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
reason_insight_code
|
reason_insight_code | string |
Codice motivo |
|
|
reason-insight-event-comment
|
reason-insight-event-comment | string |
Commento motivo |
Valori restituiti
- Corpo
- PurchaseOrder
Requisiti - Aggiungi al carrello (testo libero)
Aggiungere una riquistazione di testo libero al carrello
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | integer |
id |
|
|
type
|
type | string |
type |
|
|
Intento
|
intent | string |
intento |
|
|
URL
|
url | string |
URL |
|
|
Esportato
|
exported | boolean |
Indica se la transazione è stata esportata |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
giustificazione
|
justification | string |
Commenti di giustificazione della richiesta |
|
|
need-by-date
|
need-by-date | date-time |
Elemento necessario per data |
|
|
req-title
|
req-title | string |
Titolo facoltativo della richiesta |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Un valore false inattiverà il COA |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
account-type-id
|
account-type-id | integer |
ID tipo di account |
|
|
attivo
|
active | boolean |
Flag Attivo\Inattivo |
|
|
codice
|
code | string |
Tutti i segmenti concatenati con un trattino ( - ) |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
Questo è il soprannome per l'account. |
|
|
segment-1
|
segment-1 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 2
|
segment-2 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 3
|
segment-3 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 4
|
segment-4 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento-5
|
segment-5 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 6
|
segment-6 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
id
|
id | integer |
id |
|
|
type
|
type | string |
type |
|
|
Intento
|
intent | string |
intento |
|
|
URL
|
url | string |
URL |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
updated-at |
|
|
contract-term-type
|
contract-term-type | string |
tipo di termine del contratto |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
tier-1-disc-pct
|
tier-1-disc-pct | string |
tier_1_disc_pct |
|
|
tier-1-upper-bound
|
tier-1-upper-bound | string |
tier_1_upper_bound |
|
|
tier-2-disc-pct
|
tier-2-disc-pct | string |
tier_2_disc_pct |
|
|
tier-2-upper-bound
|
tier-2-upper-bound | string |
tier_2_upper_bound |
|
|
tier-3-disc-pct
|
tier-3-disc-pct | string |
tier_3_disc_pct |
|
|
tier-3-upper-bound
|
tier-3-upper-bound | string |
tier_3_upper_bound |
|
|
type
|
type | string |
type |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
use-pct-discount
|
use-pct-discounts | string |
use_pct_discounts |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Note descrittive sul contratto |
|
|
data di fine
|
end-date | string |
Data di scadenza |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
valore massimo
|
maximum-value | string |
Quantità massima commit |
|
|
valore minimo
|
minimum-value | string |
Importo minimo commit |
|
|
nome
|
name | string |
Nome contratto |
|
|
numero
|
number | string |
Numero contratto |
|
|
data di inizio
|
start-date | string |
Data di inizio |
|
|
status
|
status | string |
Stato del contratto |
|
|
numero account
|
account-number | string |
Numero account |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
display-name
|
display-name | string |
display_name |
|
|
id
|
id | integer |
Coupa Internal ID |
|
|
nome
|
name | string |
Nome fornitore |
|
|
numero
|
number | string |
Numero fornitore |
|
|
status
|
status | string |
Stato fornitore |
|
|
account fornitore
|
supplier-account | string |
Numero account fornitore |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
version
|
version | integer |
version |
|
|
descrizione
|
description | True | string |
descrizione |
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
Creato automaticamente da Coupa nel formato AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
image-url
|
image-url | string |
URL immagine |
|
|
nome
|
name | string |
Nome elemento |
|
|
descrizione
|
description | string |
Desciption dell'elemento |
|
|
numero di elemento
|
item-number | string |
Numero di elemento univoco |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
image-url
|
image-url | string |
URL per l'immagine dell'elemento (verrà copiato in Coupa in creazione/aggiornamento dell'elemento) |
|
|
line-num
|
line-num | integer |
line_num |
|
|
tipo di riga
|
line-type | string |
tipo di riga |
|
|
order-line-id
|
order-line-id | integer |
order_line_id |
|
|
status
|
status | string |
stato della transazione |
|
|
totale
|
total | number |
totale |
|
|
transmission-email
|
transmission-emails | string |
Messaggi di posta elettronica di trasmissione |
|
|
transmission-method-override
|
transmission-method-override | string |
Override del metodo di trasmissione |
|
|
prezzo unitario
|
unit-price | number |
prezzo articolo riga |
|
|
nome
|
name | string |
nome |
|
|
Codice percorso
|
location-code | string |
location-code |
|
|
street1
|
street1 | string |
street1 |
|
|
strada 2
|
street2 | string |
strada 2 |
|
|
city
|
city | string |
city |
|
|
stato
|
state | string |
state |
|
|
Codice postale
|
postal-code | string |
codice postale |
|
|
codice
|
code | True | string |
codice |
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
Documento d'identità
|
id | integer |
id |
|
|
ship-to-attention
|
ship-to-attention | string |
Spedire per affrontare l'attenzione |
|
|
status
|
status | True | string |
stato della transazione |
Valori restituiti
- Corpo
- RequisitionHeader
Requisiti - Creare una richiesta
Crea richiesta
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | integer |
id |
|
|
type
|
type | string |
type |
|
|
Intento
|
intent | string |
intento |
|
|
URL
|
url | string |
URL |
|
|
Esportato
|
exported | boolean |
Indica se la transazione è stata esportata |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
giustificazione
|
justification | string |
Commenti di giustificazione della richiesta |
|
|
need-by-date
|
need-by-date | date-time |
Elemento necessario per data |
|
|
req-title
|
req-title | string |
Titolo facoltativo della richiesta |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Un valore false inattiverà il COA |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
account-type-id
|
account-type-id | integer |
ID tipo di account |
|
|
attivo
|
active | boolean |
Flag Attivo\Inattivo |
|
|
codice
|
code | string |
Tutti i segmenti concatenati con un trattino ( - ) |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
Questo è il soprannome per l'account. |
|
|
segment-1
|
segment-1 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 2
|
segment-2 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 3
|
segment-3 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 4
|
segment-4 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento-5
|
segment-5 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 6
|
segment-6 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
id
|
id | integer |
id |
|
|
type
|
type | string |
type |
|
|
Intento
|
intent | string |
intento |
|
|
URL
|
url | string |
URL |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
updated-at |
|
|
contract-term-type
|
contract-term-type | string |
tipo di termine del contratto |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
tier-1-disc-pct
|
tier-1-disc-pct | string |
tier_1_disc_pct |
|
|
tier-1-upper-bound
|
tier-1-upper-bound | string |
tier_1_upper_bound |
|
|
tier-2-disc-pct
|
tier-2-disc-pct | string |
tier_2_disc_pct |
|
|
tier-2-upper-bound
|
tier-2-upper-bound | string |
tier_2_upper_bound |
|
|
tier-3-disc-pct
|
tier-3-disc-pct | string |
tier_3_disc_pct |
|
|
tier-3-upper-bound
|
tier-3-upper-bound | string |
tier_3_upper_bound |
|
|
type
|
type | string |
type |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
use-pct-discount
|
use-pct-discounts | string |
use_pct_discounts |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Note descrittive sul contratto |
|
|
data di fine
|
end-date | string |
Data di scadenza |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
valore massimo
|
maximum-value | string |
Quantità massima commit |
|
|
valore minimo
|
minimum-value | string |
Importo minimo commit |
|
|
nome
|
name | string |
Nome contratto |
|
|
numero
|
number | string |
Numero contratto |
|
|
data di inizio
|
start-date | string |
Data di inizio |
|
|
status
|
status | string |
Stato del contratto |
|
|
numero account
|
account-number | string |
Numero account |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
display-name
|
display-name | string |
display_name |
|
|
id
|
id | integer |
Coupa Internal ID |
|
|
nome
|
name | string |
Nome fornitore |
|
|
numero
|
number | string |
Numero fornitore |
|
|
status
|
status | string |
Stato fornitore |
|
|
account fornitore
|
supplier-account | string |
Numero account fornitore |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
version
|
version | integer |
version |
|
|
descrizione
|
description | True | string |
descrizione |
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
Creato automaticamente da Coupa nel formato AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
image-url
|
image-url | string |
URL immagine |
|
|
nome
|
name | string |
Nome elemento |
|
|
descrizione
|
description | string |
Desciption dell'elemento |
|
|
numero di elemento
|
item-number | string |
Numero di elemento univoco |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
image-url
|
image-url | string |
URL per l'immagine dell'elemento (verrà copiato in Coupa in creazione/aggiornamento dell'elemento) |
|
|
line-num
|
line-num | integer |
line_num |
|
|
tipo di riga
|
line-type | string |
tipo di riga |
|
|
order-line-id
|
order-line-id | integer |
order_line_id |
|
|
status
|
status | string |
stato della transazione |
|
|
totale
|
total | number |
totale |
|
|
transmission-email
|
transmission-emails | string |
Messaggi di posta elettronica di trasmissione |
|
|
transmission-method-override
|
transmission-method-override | string |
Override del metodo di trasmissione |
|
|
prezzo unitario
|
unit-price | number |
prezzo articolo riga |
|
|
nome
|
name | string |
nome |
|
|
Codice percorso
|
location-code | string |
location-code |
|
|
street1
|
street1 | string |
street1 |
|
|
strada 2
|
street2 | string |
strada 2 |
|
|
city
|
city | string |
city |
|
|
stato
|
state | string |
state |
|
|
Codice postale
|
postal-code | string |
codice postale |
|
|
codice
|
code | True | string |
codice |
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
Documento d'identità
|
id | integer |
id |
|
|
ship-to-attention
|
ship-to-attention | string |
Spedire per affrontare l'attenzione |
|
|
status
|
status | True | string |
stato della transazione |
Valori restituiti
- Corpo
- RequisitionHeader
Requisiti - Ottenere la richiesta per ID
Ottenere la richiesta per ID
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
Valori restituiti
- Corpo
- RequisitionHeader
Requisiti - Ottenere le richieste
Ottenere le richieste
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
limit
|
limit | string |
limit |
|
|
offset
|
offset | string |
offset |
Valori restituiti
- response
- array of RequisitionHeader
Requisiti - Richiesta di aggiornamento
Richiesta di aggiornamento
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
id
|
id | integer |
id |
|
|
type
|
type | string |
type |
|
|
Intento
|
intent | string |
intento |
|
|
URL
|
url | string |
URL |
|
|
Esportato
|
exported | boolean |
Indica se la transazione è stata esportata |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
giustificazione
|
justification | string |
Commenti di giustificazione della richiesta |
|
|
need-by-date
|
need-by-date | date-time |
Elemento necessario per data |
|
|
req-title
|
req-title | string |
Titolo facoltativo della richiesta |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Un valore false inattiverà il COA |
|
|
codice
|
code | string | ||
|
enabled
|
enabled | string |
Enabled |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
account-type-id
|
account-type-id | integer |
ID tipo di account |
|
|
attivo
|
active | boolean |
Flag Attivo\Inattivo |
|
|
codice
|
code | string |
Tutti i segmenti concatenati con un trattino ( - ) |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
attivo
|
active | boolean |
Active |
|
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
|
descrizione
|
description | string |
descrizione |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Description |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
posta elettronica
|
string |
posta elettronica |
||
|
Accesso al sistema
|
login | string |
numero dipendente |
|
|
fullname
|
fullname | string |
nome completo |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
Questo è il soprannome per l'account. |
|
|
segment-1
|
segment-1 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 2
|
segment-2 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 3
|
segment-3 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 4
|
segment-4 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento-5
|
segment-5 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
segmento 6
|
segment-6 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
|
id
|
id | integer |
id |
|
|
type
|
type | string |
type |
|
|
Intento
|
intent | string |
intento |
|
|
URL
|
url | string |
URL |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | True | string |
nome |
|
updated-at
|
updated-at | date-time |
updated-at |
|
|
contract-term-type
|
contract-term-type | string |
tipo di termine del contratto |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
tier-1-disc-pct
|
tier-1-disc-pct | string |
tier_1_disc_pct |
|
|
tier-1-upper-bound
|
tier-1-upper-bound | string |
tier_1_upper_bound |
|
|
tier-2-disc-pct
|
tier-2-disc-pct | string |
tier_2_disc_pct |
|
|
tier-2-upper-bound
|
tier-2-upper-bound | string |
tier_2_upper_bound |
|
|
tier-3-disc-pct
|
tier-3-disc-pct | string |
tier_3_disc_pct |
|
|
tier-3-upper-bound
|
tier-3-upper-bound | string |
tier_3_upper_bound |
|
|
type
|
type | string |
type |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
use-pct-discount
|
use-pct-discounts | string |
use_pct_discounts |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
descrizione
|
description | string |
Note descrittive sul contratto |
|
|
data di fine
|
end-date | string |
Data di scadenza |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
valore massimo
|
maximum-value | string |
Quantità massima commit |
|
|
valore minimo
|
minimum-value | string |
Importo minimo commit |
|
|
nome
|
name | string |
Nome contratto |
|
|
numero
|
number | string |
Numero contratto |
|
|
data di inizio
|
start-date | string |
Data di inizio |
|
|
status
|
status | string |
Stato del contratto |
|
|
numero account
|
account-number | string |
Numero account |
|
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
display-name
|
display-name | string |
display_name |
|
|
id
|
id | integer |
Coupa Internal ID |
|
|
nome
|
name | string |
Nome fornitore |
|
|
numero
|
number | string |
Numero fornitore |
|
|
status
|
status | string |
Stato fornitore |
|
|
account fornitore
|
supplier-account | string |
Numero account fornitore |
|
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
version
|
version | integer |
version |
|
|
descrizione
|
description | True | string |
descrizione |
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
updated-at
|
updated-at | date-time |
Creato automaticamente da Coupa nel formato AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
image-url
|
image-url | string |
URL immagine |
|
|
nome
|
name | string |
Nome elemento |
|
|
descrizione
|
description | string |
Desciption dell'elemento |
|
|
numero di elemento
|
item-number | string |
Numero di elemento univoco |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
nome
|
name | string |
nome |
|
|
codice
|
code | string |
codice |
|
|
attivo
|
active | boolean |
Active\Inactive |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
image-url
|
image-url | string |
URL per l'immagine dell'elemento (verrà copiato in Coupa in creazione/aggiornamento dell'elemento) |
|
|
line-num
|
line-num | integer |
line_num |
|
|
tipo di riga
|
line-type | string |
tipo di riga |
|
|
order-line-id
|
order-line-id | integer |
order_line_id |
|
|
status
|
status | string |
stato della transazione |
|
|
totale
|
total | number |
totale |
|
|
transmission-email
|
transmission-emails | string |
Messaggi di posta elettronica di trasmissione |
|
|
transmission-method-override
|
transmission-method-override | string |
Override del metodo di trasmissione |
|
|
prezzo unitario
|
unit-price | number |
prezzo articolo riga |
|
|
nome
|
name | string |
nome |
|
|
Codice percorso
|
location-code | string |
location-code |
|
|
street1
|
street1 | string |
street1 |
|
|
strada 2
|
street2 | string |
strada 2 |
|
|
city
|
city | string |
city |
|
|
stato
|
state | string |
state |
|
|
Codice postale
|
postal-code | string |
codice postale |
|
|
codice
|
code | True | string |
codice |
|
id
|
id | integer |
Identificatore univoco coupa |
|
|
nome
|
name | string |
nome |
|
|
Documento d'identità
|
id | integer |
id |
|
|
ship-to-attention
|
ship-to-attention | string |
Spedire per affrontare l'attenzione |
|
|
status
|
status | True | string |
stato della transazione |
Valori restituiti
- Corpo
- RequisitionHeader
Ricerca - Ricerche di query
Ricerche di query
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
Nome ricerca
|
name | string |
Nome ricerca |
|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of Lookup
Ricerca - Valori di ricerca delle query
Valori di ricerca delle query
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
Nome ricerca
|
lookup[name] | string |
Nome ricerca |
|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of LookupValue
Ricevute - Annullare una ricevuta
Ricevute void per ID
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
id
|
id | True | string |
id |
|
fields
|
fields | string |
fields |
Valori restituiti
- Corpo
- InventoryTransaction
Ricevute - Creare o annullare parzialmente una ricevuta di merci
Creare una nuova ricevuta di merci
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
quantità
|
quantity | integer |
quantità |
|
|
type
|
type | string |
type |
|
|
original-transaction-id
|
original-transaction-id | number |
ID transazione ricevuta da annullare |
|
|
Coupa Interal Line ID
|
id | integer |
ID riga ordine |
Valori restituiti
- Corpo
- InventoryTransaction
Utenti - Eseguire query per gli utenti
Eseguire query per gli utenti
Parametri
| Nome | Chiave | Necessario | Tipo | Descrizione |
|---|---|---|---|---|
|
Accesso al sistema
|
login | string |
Accesso al sistema |
|
|
limit
|
limit | integer |
limit |
|
|
offset
|
offset | integer |
offset |
|
|
ordina per
|
order_by | string |
ordina per |
|
|
dir
|
dir | string |
dir |
|
|
return_object
|
return_object | string |
return_object |
|
|
filtro
|
filter | string |
filtro |
Valori restituiti
- response
- array of UserSimple
Definizioni
RequisitionHeader
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
attachments
|
attachments | array of Attachments | |
|
Esportato
|
exported | boolean |
Indica se la transazione è stata esportata |
|
id
|
id | integer |
Identificatore univoco coupa |
|
giustificazione
|
justification | string |
Commenti di giustificazione della richiesta |
|
need-by-date
|
need-by-date | date-time |
Elemento necessario per data |
|
req-title
|
req-title | string |
Titolo facoltativo della richiesta |
|
Richiedente
|
requester | UserSimple | |
|
creato da
|
created-by | UserSimple | |
|
righe di richiesta
|
requisition-lines | array of RequisitionLine | |
|
ship-to-address
|
ship-to-address | Address | |
|
ship-to-attention
|
ship-to-attention | string |
Spedire per affrontare l'attenzione |
|
status
|
status | string |
stato della transazione |
RequisitionLine
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
account
|
account | Account | |
|
attachments
|
attachments | array of Attachments | |
|
merce
|
commodity | Commodity | |
|
contratto
|
contract | Contract | |
|
currency
|
currency | Currency | |
|
descrizione
|
description | string |
descrizione |
|
form-response
|
form-response | FormResponse | |
|
id
|
id | integer |
Identificatore univoco coupa |
|
image-url
|
image-url | string |
URL immagine |
|
oggetto
|
item | Item | |
|
line-num
|
line-num | integer |
line_num |
|
line-owner
|
line-owner | UserSimple | |
|
tipo di riga
|
line-type | string |
tipo di riga |
|
order-line-id
|
order-line-id | integer |
order_line_id |
|
status
|
status | string |
stato della transazione |
|
fornitore
|
supplier | Supplier | |
|
totale
|
total | number |
totale |
|
transmission-email
|
transmission-emails | string |
Messaggi di posta elettronica di trasmissione |
|
transmission-method-override
|
transmission-method-override | string |
Override del metodo di trasmissione |
|
prezzo unitario
|
unit-price | number |
prezzo articolo riga |
|
unità di misura
|
uom | Uom |
Invoices
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
data fattura
|
invoice-date | string |
data fattura |
|
numero fattura
|
invoice-number | string |
numero fattura |
|
imposizione a livello di linea
|
line-level-taxation | boolean |
imposizione a livello di linea |
|
totale con imposte
|
total-with-taxes | string |
totale con imposte |
|
tipo di documento
|
document-type | string |
tipo di documento |
|
Accesso al sistema
|
requested-by.login | string |
Accesso al sistema |
|
tipo di account
|
account-type | AccountType | |
|
codice
|
currency.code | string |
codice |
|
fornitore
|
supplier | Supplier | |
|
location-code
|
ship-to-address | string |
location-code |
|
righe della fattura
|
invoice-lines | array of object | |
|
account
|
invoice-lines.account | Account | |
|
contabilità totale
|
invoice-lines.accounting-total | string |
contabilità totale |
|
descrizione
|
invoice-lines.description | string |
descrizione |
|
line-num
|
invoice-lines.line-num | integer |
line-num |
|
line-id
|
invoice-lines.id | integer |
Coupa Internal Order Line ID |
|
order-header-num
|
invoice-lines.order-header-num | integer |
order-header-num |
|
po-number
|
invoice-lines.po-number | string |
po-number |
|
order-line-num
|
invoice-lines.order-line-num | string |
order-line-num |
|
price
|
invoice-lines.price | string |
price |
|
quantità
|
invoice-lines.quantity | string |
quantità |
|
totale
|
invoice-lines.total | string |
totale |
|
type
|
invoice-lines.type | string |
type |
|
contratto
|
invoice-lines.contract | Contract | |
|
currency
|
invoice-lines.currency | Currency | |
|
unità di misura
|
invoice-lines.uom | Uom |
PurchaseOrder
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
id
|
id | integer |
id |
|
created-at
|
created-at | string |
created-at |
|
status
|
status | string |
status |
|
ship-to-attention
|
ship-to-attention | string |
ship-to-attention |
|
id
|
ship-to-address.id | integer |
id |
|
nome
|
ship-to-address.name | string |
nome |
|
righe ordine
|
order-lines | array of OrderLine |
Attachments
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
id
|
id | integer |
id |
|
type
|
type | string |
type |
|
Intento
|
intent | string |
intento |
|
URL
|
url | string |
URL |
Address
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
nome
|
name | string |
nome |
|
Codice percorso
|
location-code | string |
location-code |
|
street1
|
street1 | string |
street1 |
|
strada 2
|
street2 | string |
strada 2 |
|
city
|
city | string |
city |
|
stato
|
state | string |
state |
|
Codice postale
|
postal-code | string |
codice postale |
|
country
|
country | Country | |
|
Documento d'identità
|
id | integer |
id |
Paese
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
codice
|
code | string |
codice |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
nome |
OrderPad
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
add-all-items
|
add-all-items | string |
Flag che indica l'aggiunta di tutti gli elementi |
|
any-supplier
|
any-supplier | string |
any_supplier |
|
base-value
|
base-value |
base_value |
|
|
base-value-currency
|
base-value-currency | Currency | |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
nome |
|
order-pad-lines
|
order-pad-lines | array of OrderPadLine |
OrderPadLine
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
oggetto
|
item | Item | |
|
order-amount-method
|
order-amount-method | string |
order_amount_method |
|
supplier-id
|
supplier-id | integer |
supplier_id |
|
par-level
|
par-level | number |
par_level |
|
importo
|
amount | number |
importo |
|
id
|
id | integer |
Identificatore univoco coupa |
Comments
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
ID commentabile
|
commentable-id | integer |
ID commentabile |
|
comments
|
comments | string |
comments |
Valuta
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
codice
|
code | string | |
|
enabled
|
enabled | string |
Enabled |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
nome |
Contratto
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
condizioni di contratto
|
contract-terms | array of ContractTerm | |
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
descrizione
|
description | string |
Note descrittive sul contratto |
|
data di fine
|
end-date | string |
Data di scadenza |
|
id
|
id | integer |
Identificatore univoco coupa |
|
valore massimo
|
maximum-value | string |
Quantità massima commit |
|
valore minimo
|
minimum-value | string |
Importo minimo commit |
|
nome
|
name | string |
Nome contratto |
|
numero
|
number | string |
Numero contratto |
|
data di inizio
|
start-date | string |
Data di inizio |
|
status
|
status | string |
Stato del contratto |
|
fornitore
|
supplier | Supplier | |
|
account fornitore
|
supplier-account | string |
Numero account fornitore |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
version
|
version | integer |
version |
ContractTerm
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
contract-term-type
|
contract-term-type | string |
tipo di termine del contratto |
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
nome |
|
tier-1-disc-pct
|
tier-1-disc-pct | string |
tier_1_disc_pct |
|
tier-1-upper-bound
|
tier-1-upper-bound | string |
tier_1_upper_bound |
|
tier-2-disc-pct
|
tier-2-disc-pct | string |
tier_2_disc_pct |
|
tier-2-upper-bound
|
tier-2-upper-bound | string |
tier_2_upper_bound |
|
tier-3-disc-pct
|
tier-3-disc-pct | string |
tier_3_disc_pct |
|
tier-3-upper-bound
|
tier-3-upper-bound | string |
tier_3_upper_bound |
|
type
|
type | string |
type |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
use-pct-discount
|
use-pct-discounts | string |
use_pct_discounts |
Fornitore
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
numero account
|
account-number | string |
Numero account |
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
display-name
|
display-name | string |
display_name |
|
id
|
id | integer |
Coupa Internal ID |
|
nome
|
name | string |
Nome fornitore |
|
numero
|
number | string |
Numero fornitore |
|
status
|
status | string |
Stato fornitore |
UserSimple
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
attivo
|
active | boolean |
Active\Inactive |
|
gruppi di approvazione
|
approval-groups | array of UserGroup | |
|
business-group-security-type
|
business-group-security-type | integer |
business_group_security_type |
|
gruppi di contenuto
|
content-groups | array of BusinessGroup | |
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
posta elettronica
|
string |
posta elettronica |
|
|
Accesso al sistema
|
login | string |
numero dipendente |
|
fullname
|
fullname | string |
nome completo |
|
id
|
id | integer |
Identificatore univoco coupa |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
gruppi di utenti
|
user-groups | array of UserGroup |
UserGroup
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
attivo
|
active | boolean |
Active |
|
può approvare
|
can-approve | boolean |
Il gruppo di utenti ha la possibilità di essere un responsabile approvazione |
|
gruppi di contenuto
|
content-groups | array of BusinessGroup | |
|
descrizione
|
description | string |
Description |
|
id
|
id | integer |
Identificatore univoco coupa |
BusinessGroup
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
descrizione
|
description | string |
descrizione |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
nome |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
Merce
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
attivo
|
active | boolean |
Active\Inactive |
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
nome |
|
updated-at
|
updated-at | date-time |
updated-at |
Elemento
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
nome
|
name | string |
Nome elemento |
|
descrizione
|
description | string |
Desciption dell'elemento |
|
numero di elemento
|
item-number | string |
Numero di elemento univoco |
|
attivo
|
active | boolean |
Active\Inactive |
|
merce
|
commodity | Commodity | |
|
unità di misura
|
uom | Uom | |
|
id
|
id | integer |
Identificatore univoco coupa |
|
image-url
|
image-url | string |
URL per l'immagine dell'elemento (verrà copiato in Coupa in creazione/aggiornamento dell'elemento) |
Uom
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
nome
|
name | string |
nome |
|
codice
|
code | string |
codice |
|
attivo
|
active | boolean |
Active\Inactive |
|
id
|
id | integer |
Identificatore univoco coupa |
SupplierItem
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
price
|
price | string |
price |
|
currency
|
currency | Currency | |
|
contratto
|
contract | Contract | |
|
contratto-termine
|
contract-term | ContractTerm | |
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
oggetto
|
item | Item | |
|
id
|
id | integer |
Identificatore univoco coupa |
|
lead-time
|
lead-time | integer |
lead_time |
|
manufacturer
|
manufacturer | string |
manufacturer |
|
quantità minima ordine
|
minimum-order-quantity | string |
minimum_order_quantity |
|
incremento ordine
|
order-increment | string |
order_increment |
|
price-tier-1
|
price-tier-1 | string |
price_tier_1 |
|
price-tier-2
|
price-tier-2 | string |
price_tier_2 |
|
price-tier-3
|
price-tier-3 | string |
price_tier_3 |
|
fornitore
|
supplier | Supplier | |
|
preferito
|
preferred | boolean |
Indica il fornitore preferito per questo articolo |
|
supplier-aux-part-num
|
supplier-aux-part-num | string |
supplier_aux_part_num |
|
supplier-part-num
|
supplier-part-num | string |
supplier_part_num |
|
unspsc-code
|
unspsc-code | string |
Codice UNSPSC |
IntegrationRun
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
id
|
id | integer |
Identificatore univoco coupa |
|
integrazione
|
integration | Integration | |
|
errori di integrazione
|
integration-errors | array of IntegrationError | |
|
record elaborati
|
records-processed | integer |
records_processed |
|
ora di inizio
|
start-time | string |
ora_di_inizio |
|
status
|
status | string |
stato della transazione |
|
record totali
|
total-records | integer |
total_records |
|
updated-at
|
updated-at | date-time |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
IntegrationError
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
contact-alert-type
|
contact-alert-type | string |
contact_alert_type |
|
creato da
|
created-by | UserSimple | |
|
creation-method
|
creation-method | string |
creation_method |
|
document-id
|
document-id | integer |
document_id |
|
stato documento
|
document-status | string |
document_status |
|
tipo di documento
|
document-type | string |
document_type |
|
id
|
id | integer |
Identificatore univoco coupa |
|
integration-filename
|
integration-filename | string |
nome file associato all'errore di integrazione |
|
status
|
status | string |
stato della transazione |
|
updated-at
|
updated-at | date-time |
Creato automaticamente da Coupa |
|
aggiornato da
|
updated-by | UserSimple |
Integration
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
business-object
|
business-object | string |
Oggetto Business |
|
codice
|
code | string |
Codice di integrazione univoco |
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
direction
|
direction | string |
Direction |
|
end-system
|
end-system | string |
End System |
|
end-system-type
|
end-system-type | string |
Tipo di sistema finale |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
Nome integrazione |
|
standard
|
standard | boolean |
Normale |
OrderLine
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
account
|
account | Account | |
|
contabilità totale
|
accounting-total | number |
accounting_total |
|
attachments
|
attachments | array of Attachments | |
|
merce
|
commodity | Commodity | |
|
contratto
|
contract | Contract | |
|
descrizione
|
description | string |
descrizione |
|
id
|
id | integer |
Identificatore univoco coupa |
|
fatturato
|
invoiced | number |
fatturato |
|
oggetto
|
item | Item | |
|
line-num
|
line-num | string |
line_num |
|
order-header-id
|
order-header-id | integer |
order_header_id |
|
price
|
price | number |
price |
|
quantità
|
quantity | number |
quantità |
|
ricevuto
|
received | string |
Quantità/Importo ricevuto |
|
Richiedente
|
requester | UserSimple | |
|
source-part-num
|
source-part-num | string |
source_part_num |
|
status
|
status | string |
stato della transazione |
|
fornitore
|
supplier | Supplier | |
|
totale
|
total | number |
totale |
|
type
|
type | string |
type |
|
unità di misura
|
uom | Uom |
InventoryTransaction
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
account
|
account | Account | |
|
attachments
|
attachments | array of Attachments | |
|
id
|
id | integer |
ID transazione di inventario interno di Coupa |
|
oggetto
|
item | Item | |
|
order-line
|
order-line | OrderLine | |
|
price
|
price | number |
Prezzo articolo |
|
quantità
|
quantity | number |
Quantità di ricevuta |
|
ricevuta
|
receipt | Receipt | |
|
Richiedente
|
requester | UserSimple | |
|
status
|
status | string |
Stato transazione inventario |
|
totale
|
total | number |
Totale ricevuta |
|
data transazione
|
transaction-date | date-time |
Data effettiva della transazione |
|
type
|
type | string |
Tipo di transazione inventario |
|
unità di misura
|
uom | Uom | |
|
updated-at
|
updated-at | date-time |
Ora di updation delle transazioni di inventario |
Conto
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
tipo di account
|
account-type | AccountType | |
|
account-type-id
|
account-type-id | integer |
ID tipo di account |
|
attivo
|
active | boolean |
Flag Attivo\Inattivo |
|
codice
|
code | string |
Tutti i segmenti concatenati con un trattino ( - ) |
|
created-at
|
created-at | string |
AAAA-MM-GGTHH:MM:SS+HH:MMZ |
|
creato da
|
created-by | UserSimple | |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
Questo è il soprannome per l'account. |
|
segment-1
|
segment-1 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
segmento 2
|
segment-2 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
segmento 3
|
segment-3 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
segmento 4
|
segment-4 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
segmento-5
|
segment-5 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
segmento 6
|
segment-6 | string |
Ogni segmento rappresenta il segmento del codice dell'account |
|
aggiornato da
|
updated-by | UserSimple |
AccountType
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
attivo
|
active | boolean |
Un valore false inattiverà il COA |
|
currency
|
currency | Currency | |
|
id
|
id | integer |
Identificatore univoco coupa |
|
nome
|
name | string |
nome |
Receipt
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
created-at
|
created-at | string |
Creato automaticamente da Coupa nel formato |
|
id
|
id | integer |
Identificatore univoco coupa |
|
quantità
|
quantity | number |
quantità |
|
data di ricezione
|
receipt-date | date-time |
receipt_date |
|
totale
|
total | number |
totale |
|
prezzo unitario
|
unit-price | number |
prezzo articolo riga |
|
unità di misura
|
uom | Uom | |
|
updated-at
|
updated-at | date-time |
Creato automaticamente da Coupa nel formato |
LookupValue
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
attivo
|
active | boolean |
Active\Inactive |
|
nome
|
name | string |
Nome del valore di ricerca |
|
descrizione
|
description | string |
Descrizione del valore di ricerca |
|
external-ref-num
|
external-ref-num | string |
Numero riferimento esterno (valore effettivo dell'account quando viene usato nella contabilità) |
|
id
|
id | integer |
Identificatore univoco coupa |
|
è l'impostazione predefinita
|
is-default | boolean |
is_default |
|
lookup
|
lookup | Lookup | |
|
lookup-id
|
lookup-id | integer |
lookup_id |
Ricerca
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
attivo
|
active | boolean |
Active\Inactive Flag |
|
descrizione
|
description | string |
descrizione |
|
id
|
id | integer |
Identificatore univoco coupa |
|
level-1-name
|
level-1-name | string |
level_1_name |
|
level-2-name
|
level-2-name | string |
level_2_name |
|
level-3-name
|
level-3-name | string |
level_3_name |
|
level-4-name
|
level-4-name | string |
level_4_name |
|
nome
|
name | string |
nome |
FormResponse
| Nome | Percorso | Tipo | Descrizione |
|---|---|---|---|
|
id
|
id | integer |
Identificatore univoco coupa |
|
updated-at
|
updated-at | date-time |
Creato automaticamente da Coupa nel formato AAAA-MM-GGTHH:MM:SS+HH:MMZ |