Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vQueryParams
Handle hoQueryParams
Variant vResp
Handle hoResp
Variant vSbResponseBody
Handle hoSbResponseBody
Handle hoJResp
Integer iRespStatusCode
String sTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
Get Create (RefClass(cComChilkatJsonObject)) To hoQueryParams
If (Not(IsComObjectCreated(hoQueryParams))) Begin
Send CreateComObject of hoQueryParams
End
Get ComUpdateString Of hoQueryParams "type" "order" To iSuccess
Get ComUpdateString Of hoQueryParams "fields" "<string>" To iSuccess
Get ComUpdateString Of hoQueryParams "fieldset" "basic" To iSuccess
Get ComUpdateString Of hoQueryParams "sort" "<string>" To iSuccess
Get ComUpdateInt Of hoQueryParams "page" 1 To iSuccess
Get ComUpdateInt Of hoQueryParams "per_page" 5 To iSuccess
Get ComUpdateString Of hoQueryParams "q" "<string>" To iSuccess
Get ComUpdateInt Of hoQueryParams "inclusive" 0 To iSuccess
// Adds the "Authorization: Bearer <access_token>" header.
Set ComAuthToken Of hoHttp To "<access_token>"
Send ComSetRequestHeader To hoHttp "Accept" "application/json"
Get pvComObject of hoQueryParams to vQueryParams
Get ComQuickRequestParams Of hoHttp "GET" "https://api-v2.fattureincloud.it/c/:company_id/issued_documents" vQueryParams To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
Send CreateComObject of hoSbResponseBody
End
Get pvComObject of hoSbResponseBody to vSbResponseBody
Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess
Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
If (Not(IsComObjectCreated(hoJResp))) Begin
Send CreateComObject of hoJResp
End
Get pvComObject of hoSbResponseBody to vSbResponseBody
Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
Set ComEmitCompact Of hoJResp To False
Showln "Response Body:"
Get ComEmit Of hoJResp To sTemp1
Showln sTemp1
Get ComStatusCode Of hoResp To iRespStatusCode
Showln "Response Status Code = " iRespStatusCode
If (iRespStatusCode >= 400) Begin
Showln "Response Header:"
Get ComHeader Of hoResp To sTemp1
Showln sTemp1
Showln "Failed."
Send Destroy of hoResp
Procedure_Return
End
Send Destroy of hoResp
End_Procedure
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": ""
}
]
}