Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
DECLARE @queryParams int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @queryParams OUT
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'type', 'order'
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'fields', '<string>'
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'fieldset', 'basic'
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'sort', '<string>'
EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'page', 1
EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'per_page', 5
EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'q', '<string>'
EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'inclusive', 0
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/json'
DECLARE @resp int
EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://api-v2.fattureincloud.it/c/:company_id/issued_documents', @queryParams
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
RETURN
END
DECLARE @sbResponseBody int
-- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody
DECLARE @jResp int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT
EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
EXEC sp_OASetProperty @jResp, 'EmitCompact', 0
PRINT 'Response Body:'
EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
PRINT @sTmp0
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO
Curl Command
curl -G -d "type=order"
-d "fields=%3Cstring%3E"
-d "fieldset=basic"
-d "sort=%3Cstring%3E"
-d "page=1"
-d "per_page=5"
-d "q=%3Cstring%3E"
-d "inclusive=0"
-H "Authorization: Bearer <access_token>"
-H "Accept: application/json"
https://api-v2.fattureincloud.it/c/:company_id/issued_documents
Postman Collection Item JSON
{
"name": "List Issued Documents",
"request": {
"auth": {
"type": "oauth2",
"oauth2": [
{
"key": "scope",
"value": "entity.clients:r entity.clients:a entity.suppliers:r entity.suppliers:a products:r products:a issued_documents.invoices:r issued_documents.credit_notes:r issued_documents.receipts:r issued_documents.orders:r issued_documents.quotes:r issued_documents.proformas:r issued_documents.delivery_notes:r issued_documents.work_reports:r issued_documents.supplier_orders:r issued_documents.self_invoices:r issued_documents.invoices:a issued_documents.credit_notes:a issued_documents.receipts:a issued_documents.orders:a issued_documents.quotes:a issued_documents.proformas:a issued_documents.delivery_notes:a issued_documents.work_reports:a issued_documents.supplier_orders:a issued_documents.self_invoices:a received_documents:r received_documents:a stock:r stock:a receipts:r receipts:a taxes:r taxes:a archive:r archive:a cashbook:r cashbook:a settings:r settings:a situation:r",
"type": "string"
},
{
"key": "redirect_uri",
"value": "https://api-v2.fattureincloud.it/oauth/token",
"type": "string"
},
{
"key": "accessTokenUrl",
"value": "https://api-v2.fattureincloud.it/oauth/token",
"type": "string"
},
{
"key": "authUrl",
"value": "https://api-v2.fattureincloud.it/oauth/authorize",
"type": "string"
},
{
"key": "grant_type",
"value": "authorization_code",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/c/:company_id/issued_documents?type=order&fields=<string>&fieldset=basic&sort=<string>&page=1&per_page=5&q=<string>&inclusive=0",
"host": [
"{{baseUrl}}"
],
"path": [
"c",
":company_id",
"issued_documents"
],
"query": [
{
"key": "type",
"value": "order",
"description": "(Required) The type of the issued document."
},
{
"key": "fields",
"value": "<string>",
"description": "List of comma-separated fields."
},
{
"key": "fieldset",
"value": "basic",
"description": "Name of the fieldset."
},
{
"key": "sort",
"value": "<string>",
"description": "List of comma-separated fields for result sorting (minus for desc sorting)."
},
{
"key": "page",
"value": "1",
"description": "The page to retrieve."
},
{
"key": "per_page",
"value": "5",
"description": "The size of the page."
},
{
"key": "q",
"value": "<string>",
"description": "Query for filtering the results."
},
{
"key": "inclusive",
"value": "0",
"description": "(Only for type = delivery_notes) Include invoices delivery notes."
}
],
"variable": [
{
"key": "company_id",
"value": "<integer>"
}
]
},
"description": "Lists the issued documents."
},
"response": [
{
"name": "Results list.",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/c/:company_id/issued_documents?type=order&fields=<string>&fieldset=basic&sort=<string>&page=1&per_page=5&q=<string>&inclusive=0",
"host": [
"{{baseUrl}}"
],
"path": [
"c",
":company_id",
"issued_documents"
],
"query": [
{
"key": "type",
"value": "order",
"description": "(Required) The type of the issued document."
},
{
"key": "fields",
"value": "<string>",
"description": "List of comma-separated fields."
},
{
"key": "fieldset",
"value": "basic",
"description": "Name of the fieldset."
},
{
"key": "sort",
"value": "<string>",
"description": "List of comma-separated fields for result sorting (minus for desc sorting)."
},
{
"key": "page",
"value": "1",
"description": "The page to retrieve."
},
{
"key": "per_page",
"value": "5",
"description": "The size of the page."
},
{
"key": "q",
"value": "<string>",
"description": "Query for filtering the results."
},
{
"key": "inclusive",
"value": "0",
"description": "(Only for type = delivery_notes) Include invoices delivery notes."
}
],
"variable": [
{
"key": "company_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"current_page\": \"<integer>\",\n \"first_page_url\": \"<uri>\",\n \"from\": \"<integer>\",\n \"last_page\": \"<integer>\",\n \"last_page_url\": \"<uri>\",\n \"next_page_url\": \"<uri>\",\n \"path\": \"<uri>\",\n \"per_page\": \"<integer>\",\n \"prev_page_url\": \"<uri>\",\n \"to\": \"<integer>\",\n \"total\": \"<integer>\",\n \"data\": [\n {\n \"id\": \"<integer>\",\n \"entity\": {\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"type\": null,\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"contact_person\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"tax_code\": \"<string>\",\n \"address_street\": \"<string>\",\n \"address_postal_code\": \"<string>\",\n \"address_city\": \"<string>\",\n \"address_province\": \"<string>\",\n \"address_extra\": \"<string>\",\n \"country\": \"<string>\",\n \"country_iso\": \"<string>\",\n \"email\": \"<string>\",\n \"certified_email\": \"<string>\",\n \"phone\": \"<string>\",\n \"fax\": \"<string>\",\n \"notes\": \"<string>\",\n \"default_payment_terms\": \"<integer>\",\n \"default_vat\": {\n \"id\": \"<integer>\",\n \"value\": \"<number>\",\n \"description\": \"<string>\",\n \"notes\": \"<string>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_type\": \"<string>\",\n \"ei_description\": \"<string>\",\n \"editable\": \"<boolean>\",\n \"is_disabled\": \"<boolean>\"\n },\n \"default_payment_terms_type\": \"standard\",\n \"default_payment_method\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"is_default\": \"<boolean>\",\n \"default_payment_account\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"iban\": \"<string>\",\n \"sia\": \"<string>\",\n \"cuc\": \"<string>\",\n \"virtual\": \"<boolean>\"\n },\n \"details\": [\n {\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n },\n {\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n }\n ],\n \"bank_iban\": \"<string>\",\n \"bank_name\": \"<string>\",\n \"bank_beneficiary\": \"<string>\",\n \"ei_payment_method\": \"<string>\"\n },\n \"bank_name\": \"<string>\",\n \"bank_iban\": \"<string>\",\n \"bank_swift_code\": \"<string>\",\n \"shipping_address\": \"<string>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_code\": \"<string>\",\n \"has_intent_declaration\": \"<boolean>\",\n \"intent_declaration_protocol_number\": \"<string>\",\n \"intent_declaration_protocol_date\": \"<date>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n },\n \"type\": \"invoice\",\n \"number\": \"<integer>\",\n \"numeration\": \"<string>\",\n \"date\": \"<date>\",\n \"year\": \"<integer>\",\n \"currency\": {\n \"id\": \"<string>\",\n \"symbol\": \"<string>\",\n \"exchange_rate\": \"<string>\",\n \"html_symbol\": \"<string>\"\n },\n \"language\": {\n \"code\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"subject\": \"<string>\",\n \"visible_subject\": \"<string>\",\n \"rc_center\": \"<string>\",\n \"notes\": \"<string>\",\n \"rivalsa\": \"<number>\",\n \"cassa\": \"<number>\",\n \"amount_cassa\": \"<number>\",\n \"cassa_taxable\": \"<number>\",\n \"amount_cassa_taxable\": \"<number>\",\n \"cassa2\": \"<number>\",\n \"amount_cassa2\": \"<number>\",\n \"cassa2_taxable\": \"<number>\",\n \"amount_cassa2_taxable\": \"<number>\",\n \"global_cassa_taxable\": \"<number>\",\n \"amount_global_cassa_taxable\": \"<number>\",\n \"withholding_tax\": \"<number>\",\n \"withholding_tax_taxable\": \"<number>\",\n \"other_withholding_tax\": \"<number>\",\n \"stamp_duty\": \"<number>\",\n \"payment_method\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"is_default\": \"<boolean>\",\n \"default_payment_account\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"iban\": \"<string>\",\n \"sia\": \"<string>\",\n \"cuc\": \"<string>\",\n \"virtual\": \"<boolean>\"\n },\n \"details\": [\n {\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n },\n {\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n }\n ],\n \"bank_iban\": \"<string>\",\n \"bank_name\": \"<string>\",\n \"bank_beneficiary\": \"<string>\",\n \"ei_payment_method\": \"<string>\"\n },\n \"use_split_payment\": \"<boolean>\",\n \"use_gross_prices\": \"<boolean>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_data\": {\n \"vat_kind\": null,\n \"original_document_type\": \"ordine\",\n \"od_number\": \"<string>\",\n \"od_date\": \"<date>\",\n \"cig\": \"<string>\",\n \"cup\": \"<string>\",\n \"payment_method\": \"<string>\",\n \"bank_name\": \"<string>\",\n \"bank_iban\": \"<string>\",\n \"bank_beneficiary\": \"<string>\",\n \"invoice_number\": \"<string>\",\n \"invoice_date\": \"<date>\"\n },\n \"ei_cassa_type\": \"<string>\",\n \"ei_cassa2_type\": \"<string>\",\n \"ei_withholding_tax_causal\": \"<string>\",\n \"ei_other_withholding_tax_type\": \"<string>\",\n \"ei_other_withholding_tax_causal\": \"<string>\",\n \"items_list\": [\n {\n \"id\": \"<integer>\",\n \"product_id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"category\": \"<string>\",\n \"description\": \"<string>\",\n \"qty\": \"<number>\",\n \"measure\": \"<string>\",\n \"net_price\": \"<number>\",\n \"gross_price\": \"<number>\",\n \"vat\": {\n \"id\": \"<integer>\",\n \"value\": \"<number>\",\n \"description\": \"<string>\",\n \"notes\": \"<string>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_type\": \"<string>\",\n \"ei_description\": \"<string>\",\n \"editable\": \"<boolean>\",\n \"is_disabled\": \"<boolean>\"\n },\n \"not_taxable\": \"<boolean>\",\n \"apply_withholding_taxes\": \"<boolean>\",\n \"discount\": \"<number>\",\n \"discount_highlight\": \"<boolean>\",\n \"in_dn\": \"<boolean>\",\n \"stock\": \"<boolean>\",\n \"ei_raw\": {}\n },\n {\n \"id\": \"<integer>\",\n \"product_id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"category\": \"<string>\",\n \"description\": \"<string>\",\n \"qty\": \"<number>\",\n \"measure\": \"<string>\",\n \"net_price\": \"<number>\",\n \"gross_price\": \"<number>\",\n \"vat\": {\n \"id\": \"<integer>\",\n \"value\": \"<number>\",\n \"description\": \"<string>\",\n \"notes\": \"<string>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_type\": \"<string>\",\n \"ei_description\": \"<string>\",\n \"editable\": \"<boolean>\",\n \"is_disabled\": \"<boolean>\"\n },\n \"not_taxable\": \"<boolean>\",\n \"apply_withholding_taxes\": \"<boolean>\",\n \"discount\": \"<number>\",\n \"discount_highlight\": \"<boolean>\",\n \"in_dn\": \"<boolean>\",\n \"stock\": \"<boolean>\",\n \"ei_raw\": {}\n }\n ],\n \"payments_list\": [\n {\n \"id\": \"<integer>\",\n \"due_date\": \"<date>\",\n \"amount\": \"<number>\",\n \"status\": \"not_paid\",\n \"payment_account\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"iban\": \"<string>\",\n \"sia\": \"<string>\",\n \"cuc\": \"<string>\",\n \"virtual\": \"<boolean>\"\n },\n \"paid_date\": \"<date>\",\n \"ei_raw\": {},\n \"payment_terms\": {\n \"days\": \"<integer>\",\n \"type\": \"standard\"\n }\n },\n {\n \"id\": \"<integer>\",\n \"due_date\": \"<date>\",\n \"amount\": \"<number>\",\n \"status\": \"not_paid\",\n \"payment_account\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"iban\": \"<string>\",\n \"sia\": \"<string>\",\n \"cuc\": \"<string>\",\n \"virtual\": \"<boolean>\"\n },\n \"paid_date\": \"<date>\",\n \"ei_raw\": {},\n \"payment_terms\": {\n \"days\": \"<integer>\",\n \"type\": \"standard\"\n }\n }\n ],\n \"template\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"delivery_note_template\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"acc_inv_template\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"h_margins\": \"<integer>\",\n \"v_margins\": \"<integer>\",\n \"show_payments\": \"<boolean>\",\n \"show_payment_method\": \"<boolean>\",\n \"show_totals\": \"all\",\n \"show_paypal_button\": \"<boolean>\",\n \"show_notification_button\": \"<boolean>\",\n \"show_tspay_button\": \"<boolean>\",\n \"delivery_note\": \"<boolean>\",\n \"accompanying_invoice\": \"<boolean>\",\n \"dn_number\": \"<integer>\",\n \"dn_date\": \"<date>\",\n \"dn_ai_packages_number\": \"<string>\",\n \"dn_ai_weight\": \"<string>\",\n \"dn_ai_causal\": \"<string>\",\n \"dn_ai_destination\": \"<string>\",\n \"dn_ai_transporter\": \"<string>\",\n \"dn_ai_notes\": \"<string>\",\n \"is_marked\": \"<boolean>\",\n \"amount_net\": \"<number>\",\n \"amount_vat\": \"<number>\",\n \"amount_gross\": \"<number>\",\n \"amount_due_discount\": \"<number>\",\n \"amount_rivalsa\": \"<number>\",\n \"amount_rivalsa_taxable\": \"<number>\",\n \"amount_withholding_tax\": \"<number>\",\n \"amount_withholding_tax_taxable\": \"<number>\",\n \"amount_other_withholding_tax\": \"<number>\",\n \"amount_other_withholding_tax_taxable\": \"<number>\",\n \"amount_enasarco_taxable\": \"<number>\",\n \"extra_data\": {\n \"show_sofort_button\": \"<boolean>\",\n \"multifatture_sent\": \"<integer>\",\n \"ts_communication\": \"<boolean>\",\n \"ts_flag_tipo_spesa\": \"<number>\",\n \"ts_pagamento_tracciato\": \"<boolean>\",\n \"ts_tipo_spesa\": \"<string>\",\n \"ts_opposizione\": \"<boolean>\",\n \"ts_status\": \"<integer>\",\n \"ts_file_id\": \"<string>\",\n \"ts_sent_date\": \"<date>\",\n \"ts_full_amount\": \"<boolean>\",\n \"imported_by\": \"<string>\"\n },\n \"seen_date\": \"<date>\",\n \"next_due_date\": \"<date>\",\n \"url\": \"<string>\",\n \"dn_url\": \"<string>\",\n \"ai_url\": \"<string>\",\n \"attachment_url\": \"<string>\",\n \"attachment_token\": \"<string>\",\n \"ei_raw\": {},\n \"ei_status\": \"sent\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n },\n {\n \"id\": \"<integer>\",\n \"entity\": {\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"type\": null,\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"contact_person\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"tax_code\": \"<string>\",\n \"address_street\": \"<string>\",\n \"address_postal_code\": \"<string>\",\n \"address_city\": \"<string>\",\n \"address_province\": \"<string>\",\n \"address_extra\": \"<string>\",\n \"country\": \"<string>\",\n \"country_iso\": \"<string>\",\n \"email\": \"<string>\",\n \"certified_email\": \"<string>\",\n \"phone\": \"<string>\",\n \"fax\": \"<string>\",\n \"notes\": \"<string>\",\n \"default_payment_terms\": \"<integer>\",\n \"default_vat\": {\n \"id\": \"<integer>\",\n \"value\": \"<number>\",\n \"description\": \"<string>\",\n \"notes\": \"<string>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_type\": \"<string>\",\n \"ei_description\": \"<string>\",\n \"editable\": \"<boolean>\",\n \"is_disabled\": \"<boolean>\"\n },\n \"default_payment_terms_type\": \"standard\",\n \"default_payment_method\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"is_default\": \"<boolean>\",\n \"default_payment_account\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"iban\": \"<string>\",\n \"sia\": \"<string>\",\n \"cuc\": \"<string>\",\n \"virtual\": \"<boolean>\"\n },\n \"details\": [\n {\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n },\n {\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n }\n ],\n \"bank_iban\": \"<string>\",\n \"bank_name\": \"<string>\",\n \"bank_beneficiary\": \"<string>\",\n \"ei_payment_method\": \"<string>\"\n },\n \"bank_name\": \"<string>\",\n \"bank_iban\": \"<string>\",\n \"bank_swift_code\": \"<string>\",\n \"shipping_address\": \"<string>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_code\": \"<string>\",\n \"has_intent_declaration\": \"<boolean>\",\n \"intent_declaration_protocol_number\": \"<string>\",\n \"intent_declaration_protocol_date\": \"<date>\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n },\n \"type\": \"invoice\",\n \"number\": \"<integer>\",\n \"numeration\": \"<string>\",\n \"date\": \"<date>\",\n \"year\": \"<integer>\",\n \"currency\": {\n \"id\": \"<string>\",\n \"symbol\": \"<string>\",\n \"exchange_rate\": \"<string>\",\n \"html_symbol\": \"<string>\"\n },\n \"language\": {\n \"code\": \"<string>\",\n \"name\": \"<string>\"\n },\n \"subject\": \"<string>\",\n \"visible_subject\": \"<string>\",\n \"rc_center\": \"<string>\",\n \"notes\": \"<string>\",\n \"rivalsa\": \"<number>\",\n \"cassa\": \"<number>\",\n \"amount_cassa\": \"<number>\",\n \"cassa_taxable\": \"<number>\",\n \"amount_cassa_taxable\": \"<number>\",\n \"cassa2\": \"<number>\",\n \"amount_cassa2\": \"<number>\",\n \"cassa2_taxable\": \"<number>\",\n \"amount_cassa2_taxable\": \"<number>\",\n \"global_cassa_taxable\": \"<number>\",\n \"amount_global_cassa_taxable\": \"<number>\",\n \"withholding_tax\": \"<number>\",\n \"withholding_tax_taxable\": \"<number>\",\n \"other_withholding_tax\": \"<number>\",\n \"stamp_duty\": \"<number>\",\n \"payment_method\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"is_default\": \"<boolean>\",\n \"default_payment_account\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"iban\": \"<string>\",\n \"sia\": \"<string>\",\n \"cuc\": \"<string>\",\n \"virtual\": \"<boolean>\"\n },\n \"details\": [\n {\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n },\n {\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n }\n ],\n \"bank_iban\": \"<string>\",\n \"bank_name\": \"<string>\",\n \"bank_beneficiary\": \"<string>\",\n \"ei_payment_method\": \"<string>\"\n },\n \"use_split_payment\": \"<boolean>\",\n \"use_gross_prices\": \"<boolean>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_data\": {\n \"vat_kind\": null,\n \"original_document_type\": \"ordine\",\n \"od_number\": \"<string>\",\n \"od_date\": \"<date>\",\n \"cig\": \"<string>\",\n \"cup\": \"<string>\",\n \"payment_method\": \"<string>\",\n \"bank_name\": \"<string>\",\n \"bank_iban\": \"<string>\",\n \"bank_beneficiary\": \"<string>\",\n \"invoice_number\": \"<string>\",\n \"invoice_date\": \"<date>\"\n },\n \"ei_cassa_type\": \"<string>\",\n \"ei_cassa2_type\": \"<string>\",\n \"ei_withholding_tax_causal\": \"<string>\",\n \"ei_other_withholding_tax_type\": \"<string>\",\n \"ei_other_withholding_tax_causal\": \"<string>\",\n \"items_list\": [\n {\n \"id\": \"<integer>\",\n \"product_id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"category\": \"<string>\",\n \"description\": \"<string>\",\n \"qty\": \"<number>\",\n \"measure\": \"<string>\",\n \"net_price\": \"<number>\",\n \"gross_price\": \"<number>\",\n \"vat\": {\n \"id\": \"<integer>\",\n \"value\": \"<number>\",\n \"description\": \"<string>\",\n \"notes\": \"<string>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_type\": \"<string>\",\n \"ei_description\": \"<string>\",\n \"editable\": \"<boolean>\",\n \"is_disabled\": \"<boolean>\"\n },\n \"not_taxable\": \"<boolean>\",\n \"apply_withholding_taxes\": \"<boolean>\",\n \"discount\": \"<number>\",\n \"discount_highlight\": \"<boolean>\",\n \"in_dn\": \"<boolean>\",\n \"stock\": \"<boolean>\",\n \"ei_raw\": {}\n },\n {\n \"id\": \"<integer>\",\n \"product_id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"category\": \"<string>\",\n \"description\": \"<string>\",\n \"qty\": \"<number>\",\n \"measure\": \"<string>\",\n \"net_price\": \"<number>\",\n \"gross_price\": \"<number>\",\n \"vat\": {\n \"id\": \"<integer>\",\n \"value\": \"<number>\",\n \"description\": \"<string>\",\n \"notes\": \"<string>\",\n \"e_invoice\": \"<boolean>\",\n \"ei_type\": \"<string>\",\n \"ei_description\": \"<string>\",\n \"editable\": \"<boolean>\",\n \"is_disabled\": \"<boolean>\"\n },\n \"not_taxable\": \"<boolean>\",\n \"apply_withholding_taxes\": \"<boolean>\",\n \"discount\": \"<number>\",\n \"discount_highlight\": \"<boolean>\",\n \"in_dn\": \"<boolean>\",\n \"stock\": \"<boolean>\",\n \"ei_raw\": {}\n }\n ],\n \"payments_list\": [\n {\n \"id\": \"<integer>\",\n \"due_date\": \"<date>\",\n \"amount\": \"<number>\",\n \"status\": \"not_paid\",\n \"payment_account\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"iban\": \"<string>\",\n \"sia\": \"<string>\",\n \"cuc\": \"<string>\",\n \"virtual\": \"<boolean>\"\n },\n \"paid_date\": \"<date>\",\n \"ei_raw\": {},\n \"payment_terms\": {\n \"days\": \"<integer>\",\n \"type\": \"standard\"\n }\n },\n {\n \"id\": \"<integer>\",\n \"due_date\": \"<date>\",\n \"amount\": \"<number>\",\n \"status\": \"not_paid\",\n \"payment_account\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"standard\",\n \"iban\": \"<string>\",\n \"sia\": \"<string>\",\n \"cuc\": \"<string>\",\n \"virtual\": \"<boolean>\"\n },\n \"paid_date\": \"<date>\",\n \"ei_raw\": {},\n \"payment_terms\": {\n \"days\": \"<integer>\",\n \"type\": \"standard\"\n }\n }\n ],\n \"template\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"delivery_note_template\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"acc_inv_template\": {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"type\": \"<string>\"\n },\n \"h_margins\": \"<integer>\",\n \"v_margins\": \"<integer>\",\n \"show_payments\": \"<boolean>\",\n \"show_payment_method\": \"<boolean>\",\n \"show_totals\": \"all\",\n \"show_paypal_button\": \"<boolean>\",\n \"show_notification_button\": \"<boolean>\",\n \"show_tspay_button\": \"<boolean>\",\n \"delivery_note\": \"<boolean>\",\n \"accompanying_invoice\": \"<boolean>\",\n \"dn_number\": \"<integer>\",\n \"dn_date\": \"<date>\",\n \"dn_ai_packages_number\": \"<string>\",\n \"dn_ai_weight\": \"<string>\",\n \"dn_ai_causal\": \"<string>\",\n \"dn_ai_destination\": \"<string>\",\n \"dn_ai_transporter\": \"<string>\",\n \"dn_ai_notes\": \"<string>\",\n \"is_marked\": \"<boolean>\",\n \"amount_net\": \"<number>\",\n \"amount_vat\": \"<number>\",\n \"amount_gross\": \"<number>\",\n \"amount_due_discount\": \"<number>\",\n \"amount_rivalsa\": \"<number>\",\n \"amount_rivalsa_taxable\": \"<number>\",\n \"amount_withholding_tax\": \"<number>\",\n \"amount_withholding_tax_taxable\": \"<number>\",\n \"amount_other_withholding_tax\": \"<number>\",\n \"amount_other_withholding_tax_taxable\": \"<number>\",\n \"amount_enasarco_taxable\": \"<number>\",\n \"extra_data\": {\n \"show_sofort_button\": \"<boolean>\",\n \"multifatture_sent\": \"<integer>\",\n \"ts_communication\": \"<boolean>\",\n \"ts_flag_tipo_spesa\": \"<number>\",\n \"ts_pagamento_tracciato\": \"<boolean>\",\n \"ts_tipo_spesa\": \"<string>\",\n \"ts_opposizione\": \"<boolean>\",\n \"ts_status\": \"<integer>\",\n \"ts_file_id\": \"<string>\",\n \"ts_sent_date\": \"<date>\",\n \"ts_full_amount\": \"<boolean>\",\n \"imported_by\": \"<string>\"\n },\n \"seen_date\": \"<date>\",\n \"next_due_date\": \"<date>\",\n \"url\": \"<string>\",\n \"dn_url\": \"<string>\",\n \"ai_url\": \"<string>\",\n \"attachment_url\": \"<string>\",\n \"attachment_token\": \"<string>\",\n \"ei_raw\": {},\n \"ei_status\": \"accepted\",\n \"created_at\": \"<string>\",\n \"updated_at\": \"<string>\"\n }\n ]\n}"
},
{
"name": "Unauthorized",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/c/:company_id/issued_documents?type=order&fields=<string>&fieldset=basic&sort=<string>&page=1&per_page=5&q=<string>&inclusive=0",
"host": [
"{{baseUrl}}"
],
"path": [
"c",
":company_id",
"issued_documents"
],
"query": [
{
"key": "type",
"value": "order",
"description": "(Required) The type of the issued document."
},
{
"key": "fields",
"value": "<string>",
"description": "List of comma-separated fields."
},
{
"key": "fieldset",
"value": "basic",
"description": "Name of the fieldset."
},
{
"key": "sort",
"value": "<string>",
"description": "List of comma-separated fields for result sorting (minus for desc sorting)."
},
{
"key": "page",
"value": "1",
"description": "The page to retrieve."
},
{
"key": "per_page",
"value": "5",
"description": "The size of the page."
},
{
"key": "q",
"value": "<string>",
"description": "Query for filtering the results."
},
{
"key": "inclusive",
"value": "0",
"description": "(Only for type = delivery_notes) Include invoices delivery notes."
}
],
"variable": [
{
"key": "company_id"
}
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
},
{
"name": "Not Found",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/c/:company_id/issued_documents?type=order&fields=<string>&fieldset=basic&sort=<string>&page=1&per_page=5&q=<string>&inclusive=0",
"host": [
"{{baseUrl}}"
],
"path": [
"c",
":company_id",
"issued_documents"
],
"query": [
{
"key": "type",
"value": "order",
"description": "(Required) The type of the issued document."
},
{
"key": "fields",
"value": "<string>",
"description": "List of comma-separated fields."
},
{
"key": "fieldset",
"value": "basic",
"description": "Name of the fieldset."
},
{
"key": "sort",
"value": "<string>",
"description": "List of comma-separated fields for result sorting (minus for desc sorting)."
},
{
"key": "page",
"value": "1",
"description": "The page to retrieve."
},
{
"key": "per_page",
"value": "5",
"description": "The size of the page."
},
{
"key": "q",
"value": "<string>",
"description": "Query for filtering the results."
},
{
"key": "inclusive",
"value": "0",
"description": "(Only for type = delivery_notes) Include invoices delivery notes."
}
],
"variable": [
{
"key": "company_id"
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
],
"cookie": [
],
"body": ""
}
]
}