Chilkat Online Tools

unicodeC / Fatture in Cloud API v2 - API Reference / List Issued Documents

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW queryParams;
    HCkHttpResponseW resp;
    HCkStringBuilderW sbResponseBody;
    HCkJsonObjectW jResp;
    int respStatusCode;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_Create();

    queryParams = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(queryParams,L"type",L"order");
    CkJsonObjectW_UpdateString(queryParams,L"fields",L"<string>");
    CkJsonObjectW_UpdateString(queryParams,L"fieldset",L"basic");
    CkJsonObjectW_UpdateString(queryParams,L"sort",L"<string>");
    CkJsonObjectW_UpdateInt(queryParams,L"page",1);
    CkJsonObjectW_UpdateInt(queryParams,L"per_page",5);
    CkJsonObjectW_UpdateString(queryParams,L"q",L"<string>");
    CkJsonObjectW_UpdateInt(queryParams,L"inclusive",0);

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttpW_putAuthToken(http,L"<access_token>");
    CkHttpW_SetRequestHeader(http,L"Accept",L"application/json");

    resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://api-v2.fattureincloud.it/c/:company_id/issued_documents",queryParams);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(queryParams);
        return;
    }

    sbResponseBody = CkStringBuilderW_Create();
    CkHttpResponseW_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jResp,sbResponseBody);
    CkJsonObjectW_putEmitCompact(jResp,FALSE);

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",CkJsonObjectW_emit(jResp));

    respStatusCode = CkHttpResponseW_getStatusCode(resp);
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",CkHttpResponseW_header(resp));
        wprintf(L"Failed.\n");
        CkHttpResponseW_Dispose(resp);
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(queryParams);
        CkStringBuilderW_Dispose(sbResponseBody);
        CkJsonObjectW_Dispose(jResp);
        return;
    }

    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(queryParams);
    CkStringBuilderW_Dispose(sbResponseBody);
    CkJsonObjectW_Dispose(jResp);

    }

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": ""
    }
  ]
}